Skip to content

Commit d938ad0

Browse files
committed
ci: ubuntu-24.04
1 parent 65e8c50 commit d938ad0

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/apply-pip-compile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: workflow_dispatch
55
jobs:
66
apply-pip-compile:
77
name: Apply pip compile
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
steps:
1010
- uses: actions/checkout@v4
1111
- uses: deargen/workflows/actions/apply-pip-compile@master

.github/workflows/check-pip-compile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
check-pip-compile:
1616
name: Check pip compile
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: deargen/workflows/actions/check-pip-compile@master

.github/workflows/deploy.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ jobs:
3939
strategy:
4040
matrix:
4141
platform:
42-
- runner: ubuntu-latest
42+
- runner: ubuntu-24.04
4343
target: x86_64
44-
- runner: ubuntu-latest
44+
- runner: ubuntu-24.04
4545
target: x86
46-
- runner: ubuntu-latest
46+
- runner: ubuntu-24.04
4747
target: aarch64
48-
- runner: ubuntu-latest
48+
- runner: ubuntu-24.04
4949
target: armv7
50-
- runner: ubuntu-latest
50+
- runner: ubuntu-24.04
5151
target: s390x
52-
- runner: ubuntu-latest
52+
- runner: ubuntu-24.04
5353
target: ppc64le
5454
steps:
5555
- uses: actions/checkout@v4
@@ -141,7 +141,7 @@ jobs:
141141
path: dist
142142

143143
sdist:
144-
runs-on: ubuntu-latest
144+
runs-on: ubuntu-24.04
145145
steps:
146146
- uses: actions/checkout@v4
147147
with:
@@ -167,7 +167,7 @@ jobs:
167167
release:
168168
name: Release
169169
if: ${{ github.event.inputs.dry-run == 'false' }}
170-
runs-on: ubuntu-latest
170+
runs-on: ubuntu-24.04
171171
needs: [linux, windows, macos, sdist, commit-changelog-and-release]
172172
steps:
173173
- uses: actions/download-artifact@v4

.github/workflows/gen-init-py.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
generate-init-py:
1313
name: Generate __init__.py files
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: deargen/workflows/actions/gen-init-py@master

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
pre_job:
1616
# continue-on-error: true # Uncomment once integration is finished
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
# Map a step output to a job output
1919
outputs:
2020
should_skip: ${{ steps.skip_check.outputs.should_skip }}
@@ -31,7 +31,7 @@ jobs:
3131
doctest:
3232
needs: pre_job
3333
if: needs.pre_job.outputs.should_skip != 'true'
34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-24.04
3535
steps:
3636
- uses: actions/checkout@v4
3737
- uses: deargen/workflows/actions/setup-python-and-uv@master

0 commit comments

Comments
 (0)