Skip to content

Commit bb1f37b

Browse files
committed
workflow: Downgrade github runner
Due to an [issue](actions/runner-images#11471) with Ubuntu 24.04 20250120.5.0 runner image we have been seeing failures in our multi-arch images for the last few days which is blocking the release. I assume that the issue is something related to qemu, so downgrade to 22.04 until this issue is resolved. Signed-off-by: stevenhorsman <[email protected]>
1 parent 32d785a commit bb1f37b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/caa_build_and_push_per_arch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ defaults:
3030

3131
jobs:
3232
upload_tags:
33-
runs-on: ubuntu-24.04
33+
runs-on: ubuntu-22.04
3434
steps:
3535
- name: Checkout the code
3636
uses: actions/checkout@v4
@@ -58,7 +58,7 @@ jobs:
5858
build_push_job:
5959
name: build and push
6060
needs: [upload_tags]
61-
runs-on: ${{ matrix.type == 'dev-s390x' && 's390x' || 'ubuntu-24.04' }}
61+
runs-on: ${{ matrix.type == 'dev-s390x' && 's390x' || 'ubuntu-22.04' }}
6262
strategy:
6363
fail-fast: false
6464
matrix:

.github/workflows/peerpod-ctrl_image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
jobs:
2727
peerpod_push:
2828
name: build and push peerpod-ctrl
29-
runs-on: ubuntu-24.04
29+
runs-on: ubuntu-22.04
3030
defaults:
3131
run:
3232
working-directory: src/peerpod-ctrl

0 commit comments

Comments
 (0)