Downgrade ubuntu to 22.04 when building docker images (#18026)

As currently all docker builds are failing.


https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/
https://github.com/actions/runner-images/issues/10636
This commit is contained in:
Till 2024-12-11 18:27:56 +01:00 committed by GitHub
parent 737f6c73f7
commit 6c4037dcf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -14,7 +14,7 @@ permissions:
id-token: write # needed for signing the images with GitHub OIDC Token id-token: write # needed for signing the images with GitHub OIDC Token
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-22.04
steps: steps:
- name: Set up QEMU - name: Set up QEMU
id: qemu id: qemu

1
changelog.d/18026.misc Normal file
View file

@ -0,0 +1 @@
Downgrade the Ubuntu GHA runner when building docker images.