Skip to content

Commit b41c027

Browse files
authored
chore: Trying ubuntu-22.04-arm runners (#903)
1 parent 803d3e0 commit b41c027

8 files changed

+17
-17
lines changed

.github/workflows/analyse-nextjs-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
analyse-release:
17-
runs-on: ubuntu-24.04
17+
runs-on: ubuntu-22.04-arm
1818
name: Check for relevant Next.js core changes
1919
steps:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

.github/workflows/ci-cd.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
lint:
1818
name: Linting
19-
runs-on: ubuntu-24.04
19+
runs-on: ubuntu-22.04-arm
2020
steps:
2121
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2222
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
@@ -45,7 +45,7 @@ jobs:
4545
4646
ci-core:
4747
name: CI (core)
48-
runs-on: ubuntu-24.04
48+
runs-on: ubuntu-22.04-arm
4949
steps:
5050
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
5151
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
@@ -67,7 +67,7 @@ jobs:
6767
# update the required checks in GitHub
6868
# branch protection settings for `next`.
6969
name: E2E (next@${{ matrix.next-version }}${{ matrix.base-path && ' basePath' || ''}})
70-
runs-on: ubuntu-24.04
70+
runs-on: ubuntu-22.04-arm
7171
needs: [ci-core]
7272
strategy:
7373
fail-fast: false
@@ -122,7 +122,7 @@ jobs:
122122

123123
e2e-react:
124124
name: E2E (react)
125-
runs-on: ubuntu-24.04
125+
runs-on: ubuntu-22.04-arm
126126
needs: [ci-core]
127127
steps:
128128
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -156,7 +156,7 @@ jobs:
156156

157157
e2e-react-router:
158158
name: E2E (react-router ${{ matrix.react-router-version }})
159-
runs-on: ubuntu-24.04
159+
runs-on: ubuntu-22.04-arm
160160
needs: [ci-core]
161161
strategy:
162162
fail-fast: false
@@ -196,7 +196,7 @@ jobs:
196196

197197
e2e-remix:
198198
name: E2E (remix)
199-
runs-on: ubuntu-24.04
199+
runs-on: ubuntu-22.04-arm
200200
needs: [ci-core]
201201
steps:
202202
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -230,7 +230,7 @@ jobs:
230230

231231
ci-notify:
232232
name: Notify on Slack
233-
runs-on: ubuntu-24.04
233+
runs-on: ubuntu-22.04-arm
234234
needs:
235235
- lint
236236
- ci-core
@@ -248,7 +248,7 @@ jobs:
248248

249249
cd:
250250
name: Deployment
251-
runs-on: ubuntu-24.04
251+
runs-on: ubuntu-22.04-arm
252252
permissions:
253253
contents: write # to be able to publish a GitHub release
254254
issues: write # to be able to comment on released issues

.github/workflows/milestone-automation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
update_milestones:
1111
name: Update Milestones
12-
runs-on: ubuntu-24.04
12+
runs-on: ubuntu-22.04-arm
1313
if: github.event.pull_request.merged == true
1414

1515
steps:

.github/workflows/pkg.pr.new.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
github.event.review.state == 'APPROVED' ||
1313
contains(github.event.pull_request.author_association, 'MEMBER') ||
1414
contains(github.event.pull_request.labels.*.name, 'deploy:preview')
15-
runs-on: ubuntu-24.04
15+
runs-on: ubuntu-22.04-arm
1616
outputs:
1717
enable: ${{ steps.check-for-changes.outputs.enable }}
1818
steps:
@@ -33,7 +33,7 @@ jobs:
3333
name: Deploy to pkg.pr.new
3434
needs: check-changes
3535
if: needs.check-changes.outputs.enable == 'true'
36-
runs-on: ubuntu-24.04
36+
runs-on: ubuntu-22.04-arm
3737
steps:
3838
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3939
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2

.github/workflows/pr-base-enforcement.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
prevent-pr-targetting-master:
11-
runs-on: ubuntu-24.04
11+
runs-on: ubuntu-22.04-arm
1212
steps:
1313
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1414
- name: Post comment to update base branch

.github/workflows/ship-it.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
ship-it:
88
name: Ship it
9-
runs-on: ubuntu-24.04
9+
runs-on: ubuntu-22.04-arm
1010
steps:
1111
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1212
with:

.github/workflows/snapshot-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
snapshot:
1616
name: Deployment
17-
runs-on: ubuntu-24.04
17+
runs-on: ubuntu-22.04-arm
1818
permissions:
1919
id-token: write # to enable use of OIDC for NPM provenance
2020
steps:

.github/workflows/test-against-nextjs-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
test_against_nextjs_release:
1717
name: CI (next@${{ inputs.version }}${{ matrix.base-path && ' basePath' || ''}}${{ matrix.react-compiler && ' ⚛️⚡️' || ''}})
18-
runs-on: ubuntu-24.04
18+
runs-on: ubuntu-22.04-arm
1919
strategy:
2020
fail-fast: false
2121
matrix:
@@ -57,7 +57,7 @@ jobs:
5757

5858
invalidate-isr-cache:
5959
name: Invalidate ISR cache
60-
runs-on: ubuntu-24.04
60+
runs-on: ubuntu-22.04-arm
6161
needs: test_against_nextjs_release
6262
if: ${{ always() }}
6363
steps:

0 commit comments

Comments
 (0)