Skip to content

Commit 2e7cf6c

Browse files
committed
Use latest ubuntu image in GHA
1 parent dff33f5 commit 2e7cf6c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
fail-fast: false
1414
matrix:

.github/workflows/publish.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v5
@@ -30,17 +30,17 @@ jobs:
3030
strategy:
3131
matrix:
3232
platform:
33-
- runner: ubuntu-22.04
33+
- runner: ubuntu-latest
3434
target: x86_64
35-
- runner: ubuntu-22.04
35+
- runner: ubuntu-latest
3636
target: x86
37-
- runner: ubuntu-22.04
37+
- runner: ubuntu-latest
3838
target: aarch64
39-
- runner: ubuntu-22.04
39+
- runner: ubuntu-latest
4040
target: armv7
41-
- runner: ubuntu-22.04
41+
- runner: ubuntu-latest
4242
target: s390x
43-
- runner: ubuntu-22.04
43+
- runner: ubuntu-latest
4444
target: ppc64le
4545
steps:
4646
- uses: actions/checkout@v4
@@ -117,7 +117,7 @@ jobs:
117117

118118
sdist:
119119
needs: test
120-
runs-on: ubuntu-22.04
120+
runs-on: ubuntu-latest
121121
steps:
122122
- uses: actions/checkout@v4
123123
- name: Build sdist
@@ -133,7 +133,7 @@ jobs:
133133

134134
release:
135135
name: Release
136-
runs-on: ubuntu-22.04
136+
runs-on: ubuntu-latest
137137
if: startsWith(github.ref, 'refs/tags/')
138138
needs: [linux, windows, macos, sdist]
139139
steps:

0 commit comments

Comments
 (0)