Skip to content

Commit

Permalink
Switch to the new GitHub Actions runner groups (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley authored Jul 15, 2024
1 parent 5e18168 commit 8f51dd6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_mirror-distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
get-unmirrored-versions:
name: Get Unmirrored Versions
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
versions: ${{ steps.get-unmirrored-versions.outputs.versions }}
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
mirror-distribution:
name: Mirror v${{ matrix.version }} ${{ matrix.platform && format('({0})', matrix.platform) || '' }}
needs: [get-unmirrored-versions]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: needs.get-unmirrored-versions.outputs.versions != '[]'
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_update-inventory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
jobs:
update-inventory:
name: Update Inventory
runs-on: pub-hk-ubuntu-22.04-small
runs-on: pub-hk-ubuntu-24.04-ip
steps:
- uses: actions/create-github-app-token@v1
id: generate-token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:

jobs:
check-changelog:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: (!contains(github.event.pull_request.labels.*.name, 'skip changelog'))
steps:
- name: Checkout
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:

shell-lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: koalaman/shellcheck-alpine:v0.9.0
steps:
Expand All @@ -24,7 +24,7 @@ jobs:
run: shfmt -f . | grep -v ^test/ | grep -v '_shpec.sh$' | xargs shfmt -d

rust-lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:
run: cargo fmt -- --check

rust-unit-test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -51,7 +51,7 @@ jobs:

find-libcnb-buildpacks:
name: Find libcnb buildpacks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
libcnb-buildpacks: ${{ steps.find-buildpack-dirs.outputs.buildpacks }}
steps:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
rust-integration-test:
name: ${{ matrix.name }} (${{ matrix.builder_tag }}, ${{ matrix.arch }})
runs-on: ${{ matrix.arch == 'arm64' && 'pub-hk-ubuntu-22.04-arm-small' || 'ubuntu-latest' }}
runs-on: ${{ matrix.arch == 'arm64' && 'pub-hk-ubuntu-24.04-arm-medium' || 'ubuntu-24.04' }}
env:
INTEGRATION_TEST_CNB_BUILDER: heroku/builder:${{ matrix.builder_tag }}
needs: find-libcnb-buildpacks
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
run: cargo test --locked -- --ignored --test-threads 16

shpec:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: heroku/heroku:${{ matrix.stack-version }}-build
strategy:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
# (assumes the versions between have backwards-compatible APIs)
version: [14.10.0, latest]
name: Test Metrics (${{ matrix.version }})
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/inventory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
update-nodejs-inventory:
name: Update Node.js Inventory
runs-on: pub-hk-ubuntu-22.04-small
runs-on: pub-hk-ubuntu-24.04-ip
steps:
- uses: actions/create-github-app-token@v1
id: generate-token
Expand Down

0 comments on commit 8f51dd6

Please sign in to comment.