Skip to content

Commit

Permalink
workflow: Downgrade github runner
Browse files Browse the repository at this point in the history
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 <steven@uk.ibm.com>
  • Loading branch information
stevenhorsman committed Jan 28, 2025
1 parent 32d785a commit e5a39b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/caa_build_and_push_per_arch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ defaults:

jobs:
upload_tags:
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
steps:
- name: Checkout the code
uses: actions/checkout@v4
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
build_push_job:
name: build and push
needs: [upload_tags]
runs-on: ${{ matrix.type == 'dev-s390x' && 's390x' || 'ubuntu-24.04' }}
runs-on: ${{ matrix.type == 'dev-s390x' && 's390x' || 'ubuntu-22.04' }}
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/peerpod-ctrl_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
jobs:
peerpod_push:
name: build and push peerpod-ctrl
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
defaults:
run:
working-directory: src/peerpod-ctrl
Expand Down

0 comments on commit e5a39b5

Please sign in to comment.