Skip to content

Commit

Permalink
ci: ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyoon committed Oct 2, 2024
1 parent 65e8c50 commit d938ad0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apply-pip-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: workflow_dispatch
jobs:
apply-pip-compile:
name: Apply pip compile
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: deargen/workflows/actions/apply-pip-compile@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-pip-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
check-pip-compile:
name: Check pip compile
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: deargen/workflows/actions/check-pip-compile@master
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:
strategy:
matrix:
platform:
- runner: ubuntu-latest
- runner: ubuntu-24.04
target: x86_64
- runner: ubuntu-latest
- runner: ubuntu-24.04
target: x86
- runner: ubuntu-latest
- runner: ubuntu-24.04
target: aarch64
- runner: ubuntu-latest
- runner: ubuntu-24.04
target: armv7
- runner: ubuntu-latest
- runner: ubuntu-24.04
target: s390x
- runner: ubuntu-latest
- runner: ubuntu-24.04
target: ppc64le
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
path: dist

sdist:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -167,7 +167,7 @@ jobs:
release:
name: Release
if: ${{ github.event.inputs.dry-run == 'false' }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [linux, windows, macos, sdist, commit-changelog-and-release]
steps:
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gen-init-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
generate-init-py:
name: Generate __init__.py files
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: deargen/workflows/actions/gen-init-py@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
pre_job:
# continue-on-error: true # Uncomment once integration is finished
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
Expand All @@ -31,7 +31,7 @@ jobs:
doctest:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: deargen/workflows/actions/setup-python-and-uv@master
Expand Down

0 comments on commit d938ad0

Please sign in to comment.