summary refs log tree commit diff
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2024-12-11 18:27:56 +0100
committerGitHub <noreply@github.com>2024-12-11 18:27:56 +0100
commit6c4037dcf3eaa75b55952cd589b0d72d7109c0a0 (patch)
tree4abfcafe5344baed9ea55d76a531f91b974d8b39
parentUpdate changelog (diff)
downloadsynapse-6c4037dcf3eaa75b55952cd589b0d72d7109c0a0.tar.xz
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
-rw-r--r--.github/workflows/docker.yml2
-rw-r--r--changelog.d/18026.misc1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml

index ebf866e3d5..82cacdfeb3 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml
@@ -14,7 +14,7 @@ permissions: id-token: write # needed for signing the images with GitHub OIDC Token jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Set up QEMU id: qemu diff --git a/changelog.d/18026.misc b/changelog.d/18026.misc new file mode 100644
index 0000000000..729f72c4a2 --- /dev/null +++ b/changelog.d/18026.misc
@@ -0,0 +1 @@ +Downgrade the Ubuntu GHA runner when building docker images.