Skip to content

Commit c4857c6

Browse files
committed
Upgrade CI image to latest version
1 parent 44f206c commit c4857c6

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: ["ubuntu-22.04"] # "windows-2022" # Disabled until solution/workaround for NVTX is present
20+
os:
21+
["ubuntu-22.04"] # "windows-2025" # Disabled until solution/workaround for NVTX is present
22+
# "ubuntu-24.04" # Postponed as long as testing against CUDA 12.1, needs 12.6+
2123
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2224

2325
name: "${{ matrix.os }} / Python ${{ matrix.python }}"
@@ -79,7 +81,7 @@ jobs:
7981
- build
8082

8183
name: "Check Build"
82-
runs-on: ubuntu-22.04
84+
runs-on: ubuntu-24.04
8385

8486
steps:
8587
- uses: re-actors/alls-green@release/v1

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
build:
2121
name: Build
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-22.04 # "ubuntu-24.04" # Postponed as long as testing against CUDA 12.1, needs 12.6+
2323

2424
steps:
2525
- uses: actions/checkout@v4
@@ -65,7 +65,7 @@ jobs:
6565

6666
publish:
6767
name: Upload release to GitHub Pages
68-
runs-on: ubuntu-22.04
68+
runs-on: ubuntu-24.04
6969
if: github.event_name == 'release' && github.event.action == 'published'
7070

7171
needs:
@@ -96,7 +96,7 @@ jobs:
9696
- publish
9797

9898
name: "Check Docs"
99-
runs-on: ubuntu-22.04
99+
runs-on: ubuntu-24.04
100100

101101
steps:
102102
- uses: re-actors/alls-green@release/v1

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121

2222
name: "Python ${{ matrix.python }}"
23-
runs-on: ubuntu-22.04
23+
runs-on: ubuntu-24.04
2424

2525
steps:
2626
- uses: actions/checkout@v4
@@ -44,7 +44,7 @@ jobs:
4444
- lint
4545

4646
name: "Check Lint"
47-
runs-on: ubuntu-22.04
47+
runs-on: ubuntu-24.04
4848

4949
steps:
5050
- uses: re-actors/alls-green@release/v1

.github/workflows/pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
dist:
2121
name: Distribution build
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323

2424
steps:
2525
- uses: actions/checkout@v4
@@ -28,7 +28,7 @@ jobs:
2828

2929
publish-test:
3030
name: Upload release to TestPyPI
31-
runs-on: ubuntu-22.04
31+
runs-on: ubuntu-24.04
3232
if: github.event_name == 'release' && github.event.action == 'published'
3333

3434
needs:
@@ -53,7 +53,7 @@ jobs:
5353

5454
publish:
5555
name: Upload release to PyPI
56-
runs-on: ubuntu-22.04
56+
runs-on: ubuntu-24.04
5757
if: github.event_name == 'release' && github.event.action == 'published'
5858

5959
needs:
@@ -83,7 +83,7 @@ jobs:
8383
- publish
8484

8585
name: "Check PyPI"
86-
runs-on: ubuntu-22.04
86+
runs-on: ubuntu-24.04
8787

8888
steps:
8989
- uses: re-actors/alls-green@release/v1

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: write
1515
pull-requests: read
1616

17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818

1919
steps:
2020
- uses: release-drafter/release-drafter@v6

0 commit comments

Comments
 (0)