summary refs log tree commit diff
path: root/.github
diff options
context:
space:
mode:
authorQuentin Gliech <quenting@element.io>2024-06-18 12:33:43 +0200
committerQuentin Gliech <quenting@element.io>2024-06-18 12:33:43 +0200
commitfa3adc896ad6ecbafce75e5617291791188f6fc7 (patch)
treefa4ec42b713e3d1a673f748946e80d8a52212764 /.github
parentAdd support for via query parameter from MSC4156 (#17322) (diff)
parent1.109.0 (diff)
downloadsynapse-fa3adc896ad6ecbafce75e5617291791188f6fc7.tar.xz
Merge branch 'master' into develop
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-artifacts.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml
index 5d4a4fe1d6..9f0feffd94 100644
--- a/.github/workflows/release-artifacts.yml
+++ b/.github/workflows/release-artifacts.yml
@@ -102,7 +102,7 @@ jobs:
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        os: [ubuntu-20.04, macos-11]
+        os: [ubuntu-20.04, macos-12]
         arch: [x86_64, aarch64]
         # is_pr is a flag used to exclude certain jobs from the matrix on PRs.
         # It is not read by the rest of the workflow.
@@ -112,9 +112,9 @@ jobs:
         exclude:
           # Don't build macos wheels on PR CI.
           - is_pr: true
-            os: "macos-11"
+            os: "macos-12"
           # Don't build aarch64 wheels on mac.
-          - os: "macos-11"
+          - os: "macos-12"
             arch: aarch64
           # Don't build aarch64 wheels on PR CI.
           - is_pr: true
@@ -130,7 +130,7 @@ jobs:
           python-version: "3.x"
 
       - name: Install cibuildwheel
-        run: python -m pip install cibuildwheel==2.16.2
+        run: python -m pip install cibuildwheel==2.19.1
 
       - name: Set up QEMU to emulate aarch64
         if: matrix.arch == 'aarch64'