Skip to content

Commit

Permalink
Upgrade the Ubuntu-based runner used in CI to 24.04 (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericcornelissen authored Sep 25, 2024
1 parent 4d5c313 commit 6f24fe2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ permissions: read-all
jobs:
dev-env:
name: Dev env
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Build development image
run: make dev-img
format:
name: Format
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
Expand All @@ -28,7 +28,7 @@ jobs:
run: make format-check
lint:
name: Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
Expand All @@ -45,7 +45,7 @@ jobs:
run: make lint-sh
test:
name: Test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -72,7 +72,7 @@ jobs:
- name: MacOS
os: macos-14
- name: Ubuntu
os: ubuntu-22.04
os: ubuntu-24.04
steps:
- name: asdf plugin test
uses: asdf-vm/actions/plugin-test@4f8f7939dd917fc656bb7c3575969a5988c28364 # v3.0.0
Expand All @@ -81,7 +81,7 @@ jobs:
version: 1.29.0
secrets:
name: Secrets
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
tooling:
name: Update tooling
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write # To push a commit
pull-requests: write # To open a Pull Request
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
github:
name: GitHub Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write # To create a GitHub Release
steps:
Expand Down

0 comments on commit 6f24fe2

Please sign in to comment.