From 6fc6589158bb839e101ee6bc5a8a7d145ac230a0 Mon Sep 17 00:00:00 2001 From: George Li Date: Tue, 18 Nov 2025 16:30:30 +0000 Subject: [PATCH] asynq: upgrade workflow macos13 has reached end of life and runners are getting brownout by github per https://github.com/actions/runner-images/issues/13046 so these worflows fail Reviewers: hwanseung Test Plan: none Addresses Pull Requests: Differential Revision: Asana Tasks: Screenshot: CC: Deploy To: --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9df6fc2..dea93b9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04, windows-2022, macOS-13] + os: [ubuntu-22.04, windows-2022, macOS-15] steps: - uses: actions/checkout@v4 @@ -73,7 +73,7 @@ jobs: path: dist - uses: actions/download-artifact@v4.1.7 with: - name: macOS-13 + name: macOS-15 path: dist - name: Publish distribution to PyPI if: startsWith(github.ref, 'refs/tags')