From e5926bf3dd34267d23613bb8caf82b068f7dfbb4 Mon Sep 17 00:00:00 2001 From: Bill Napier Date: Wed, 26 Mar 2025 21:42:55 +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 bfe0be9e..0f278a0b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,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 @@ -242,7 +242,7 @@ jobs: upload-wheels: name: Publish wheels to PyPi needs: [release-wheel-gpu] - runs-on: ubuntu-20.04 + runs-on: 'ubuntu-24.04' strategy: matrix: # TODO: add back 'Windows' when it can be compiled. @@ -290,7 +290,7 @@ jobs: upload-dev-container: name: Upload dev container to DockerHub needs: [release-wheel-gpu, test-with-bazel] - runs-on: ubuntu-20.04 + runs-on: 'ubuntu-24.04' strategy: matrix: py-version: ['3.10']