From 7d17d2ee88b4896367665c070263e87e834516d4 Mon Sep 17 00:00:00 2001 From: Bill Napier Date: Wed, 26 Mar 2025 21:42:07 +0000 Subject: [PATCH] Update runners to ubuntu-24.04 from deprecated ubuntu-20.04 label --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 618486d232..4a4a2c4fff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ env: jobs: test-with-bazel: name: Test with bazel - runs-on: ubuntu-20.04 + runs-on: 'ubuntu-24.04' steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 @@ -101,7 +101,7 @@ jobs: upload-wheels: name: Publish wheels to PyPi needs: [release-wheel, test-with-bazel] - runs-on: ubuntu-20.04 + runs-on: 'ubuntu-24.04' strategy: matrix: os: ['macOS', 'Linux'] @@ -141,7 +141,7 @@ jobs: upload-dev-container: name: Upload dev container to DockerHub needs: [release-wheel, test-with-bazel] - runs-on: ubuntu-20.04 + runs-on: 'ubuntu-24.04' env: PY_VERSION: '3.9' if: (github.event_name == 'push' && github.ref == 'refs/heads/master')