Skip to content

Commit

Permalink
Move simple jobs to latest Ubuntu version (#4429)
Browse files Browse the repository at this point in the history
These jobs were previously running on an old version of Ubuntu, the
image for which will be deprecated at some point. This PR just bumps
them to use a newer version; the jobs aren't interacting with the OS in
any meaningful way so this won't be a breaking change.
  • Loading branch information
Baltoli authored Jun 7, 2024
1 parent ca41ff9 commit 71dc501
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

version-bump:
name: 'Version Bump'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: 'Check out code'
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

change-base:
name: 'Change base to develop branch'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: 'Check out code'
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

set-release-id:
name: 'Set Release ID'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: 'Get release_id'
run: echo "release_id=$(jq --raw-output '.release.id' $GITHUB_EVENT_PATH)" >> ${GITHUB_OUTPUT}
Expand Down Expand Up @@ -48,8 +48,8 @@ jobs:
strategy:
matrix:
include:
- runner: ubuntu-20.04
os: ubuntu-20.04
- runner: ubuntu-24.04
os: ubuntu-24.04
- runner: macos-13
os: macos-13
- runner: MacM1
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:

gh-pages:
name: 'GitHub Pages deployment'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 30
needs: [pyk-build-docs, release]
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

nix-flake-submodule-sync:
name: 'Nix flake submodule sync'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: 'Check out code, set up Git'
uses: actions/checkout@v4
Expand Down

0 comments on commit 71dc501

Please sign in to comment.