Skip to content

Commit

Permalink
chore(ci): bump to latest runners (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheButlah authored Dec 12, 2024
1 parent c11dd05 commit 973dde5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/delete-tmp-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
clean_tmp:
name: Delete Expired Releases
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Delete old releases on `tmp` channel
uses: dev-drprasad/delete-older-releases@0bf4e6748f08135170c2294f877ba7d9b633b028 # pin@v0.3.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-compliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
check-pr-title:
name: Check PR title
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
# See https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
env:
TITLE: ${{ github.event.pull_request.title }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
format:
name: Black Format for Python
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ env:
jobs:
check-inputs:
name: Check Workflow Inputs
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
release-name: ${{ steps.release-name.outputs.CI_RELEASE_NAME }}
steps:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:

release:
name: Create Release and Tag
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- rust-ci
- check-inputs
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/rust-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
fmt:
name: Format
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
with:
Expand All @@ -41,7 +41,7 @@ jobs:

clippy:
name: Clippy
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
with:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
doc:
name: Doc
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
with:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
name: Test
strategy:
matrix:
platform: [ public-ubuntu-22.04-32core, macos-13 ]
platform: [ public-ubuntu-24.04-32core, macos-14 ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
Expand All @@ -127,7 +127,7 @@ jobs:
with:
key: custom-${{ hashFiles('**/*.nix', 'flake.lock') }}
- name: Install dbus
if: matrix.platform == 'macos-13'
if: matrix.platform == 'macos-14'
run: brew install dbus
- name: Print environment
run: |
Expand All @@ -150,7 +150,7 @@ jobs:
build:
name: Build
runs-on: public-ubuntu-22.04-32core
runs-on: public-ubuntu-24.04-32core
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
with:
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:

cargo-deny:
name: Cargo Deny
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
with:
Expand Down

0 comments on commit 973dde5

Please sign in to comment.