Skip to content

Commit 4b0626a

Browse files
Update runners to ubuntu-24.04 from deprecated ubuntu-20.04 label (#2144)
Co-authored-by: Bill Napier <[email protected]>
1 parent 7b28ee2 commit 4b0626a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ jobs:
485485
name: Release
486486
if: github.event_name == 'push'
487487
needs: [linux-wheel, macos-wheel] #, windows-wheel]
488-
runs-on: ubuntu-20.04
488+
runs-on: 'ubuntu-24.04'
489489
steps:
490490
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
491491
with:
@@ -561,7 +561,7 @@ jobs:
561561
name: Release Candidate
562562
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
563563
needs: [release]
564-
runs-on: ubuntu-20.04
564+
runs-on: 'ubuntu-24.04'
565565
steps:
566566
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
567567
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
@@ -601,7 +601,7 @@ jobs:
601601
name: Docker Release
602602
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
603603
needs: [lint, linux-test, macos-test, windows-test]
604-
runs-on: ubuntu-20.04
604+
runs-on: 'ubuntu-24.04'
605605
steps:
606606
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
607607
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
@@ -622,7 +622,7 @@ jobs:
622622
build-number:
623623
name: Build Number
624624
if: github.event_name == 'push'
625-
runs-on: ubuntu-20.04
625+
runs-on: 'ubuntu-24.04'
626626
steps:
627627
- run: |
628628
set -e -x
@@ -684,7 +684,7 @@ jobs:
684684
name: Nightly ${{ matrix.python }} Linux
685685
if: github.event_name == 'push'
686686
needs: [build-number, linux-wheel]
687-
runs-on: ubuntu-20.04
687+
runs-on: 'ubuntu-24.04'
688688
strategy:
689689
matrix:
690690
python: ['3.9', '3.10', '3.11', '3.12']
@@ -761,7 +761,7 @@ jobs:
761761
name: Nightly
762762
if: github.event_name == 'push'
763763
needs: [linux-nightly, macos-nightly, windows-nightly]
764-
runs-on: ubuntu-20.04
764+
runs-on: 'ubuntu-24.04'
765765
steps:
766766
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
767767
with:
@@ -859,7 +859,7 @@ jobs:
859859
name: Docker Nightly
860860
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
861861
needs: [linux-nightly, macos-nightly, windows-nightly]
862-
runs-on: ubuntu-20.04
862+
runs-on: 'ubuntu-24.04'
863863
steps:
864864
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
865865
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0

0 commit comments

Comments
 (0)