File tree 8 files changed +16
-16
lines changed
8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 14
14
15
15
jobs :
16
16
analyse-release :
17
- runs-on : ubuntu-latest
17
+ runs-on : ubuntu-24.04
18
18
name : Check for relevant Next.js core changes
19
19
steps :
20
20
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Original file line number Diff line number Diff line change 16
16
jobs :
17
17
lint :
18
18
name : Linting
19
- runs-on : ubuntu-latest
19
+ runs-on : ubuntu-24.04
20
20
steps :
21
21
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
22
22
- uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
45
45
46
46
ci-core :
47
47
name : CI (core)
48
- runs-on : ubuntu-latest
48
+ runs-on : ubuntu-24.04
49
49
steps :
50
50
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
51
51
- uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
67
67
# update the required checks in GitHub
68
68
# branch protection settings for `next`.
69
69
name : E2E (next@${{ matrix.next-version }}${{ matrix.base-path && ' basePath' || ''}})
70
- runs-on : ubuntu-latest
70
+ runs-on : ubuntu-24.04
71
71
needs : [ci-core]
72
72
strategy :
73
73
fail-fast : false
@@ -122,7 +122,7 @@ jobs:
122
122
123
123
e2e-react :
124
124
name : E2E (react)
125
- runs-on : ubuntu-latest
125
+ runs-on : ubuntu-24.04
126
126
needs : [ci-core]
127
127
steps :
128
128
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -156,7 +156,7 @@ jobs:
156
156
157
157
e2e-react-router :
158
158
name : E2E (react-router)
159
- runs-on : ubuntu-latest
159
+ runs-on : ubuntu-24.04
160
160
needs : [ci-core]
161
161
steps :
162
162
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -190,7 +190,7 @@ jobs:
190
190
191
191
e2e-remix :
192
192
name : E2E (remix)
193
- runs-on : ubuntu-latest
193
+ runs-on : ubuntu-24.04
194
194
needs : [ci-core]
195
195
steps :
196
196
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -224,7 +224,7 @@ jobs:
224
224
225
225
cd :
226
226
name : Deployment
227
- runs-on : ubuntu-latest
227
+ runs-on : ubuntu-24.04
228
228
needs :
229
229
- lint
230
230
- ci-core
Original file line number Diff line number Diff line change 9
9
jobs :
10
10
update_milestones :
11
11
name : Update Milestones
12
- runs-on : ubuntu-latest
12
+ runs-on : ubuntu-24.04
13
13
if : github.event.pull_request.merged == true
14
14
15
15
steps :
Original file line number Diff line number Diff line change 12
12
github.event.review.state == 'APPROVED' ||
13
13
contains(github.event.pull_request.author_association, 'MEMBER') ||
14
14
contains(github.event.pull_request.labels.*.name, 'deploy:preview')
15
- runs-on : ubuntu-latest
15
+ runs-on : ubuntu-24.04
16
16
outputs :
17
17
enable : ${{ steps.check-for-changes.outputs.enable }}
18
18
steps :
33
33
name : Deploy to pkg.pr.new
34
34
needs : check-changes
35
35
if : needs.check-changes.outputs.enable == 'true'
36
- runs-on : ubuntu-latest
36
+ runs-on : ubuntu-24.04
37
37
steps :
38
38
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
39
39
- uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
prevent-pr-targetting-master :
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-24.04
12
12
steps :
13
13
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
14
14
- name : Post comment to update base branch
Original file line number Diff line number Diff line change 6
6
jobs :
7
7
ship-it :
8
8
name : Ship it
9
- runs-on : ubuntu-latest
9
+ runs-on : ubuntu-24.04
10
10
steps :
11
11
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
12
12
with :
Original file line number Diff line number Diff line change 14
14
jobs :
15
15
snapshot :
16
16
name : Deployment
17
- runs-on : ubuntu-latest
17
+ runs-on : ubuntu-24.04
18
18
steps :
19
19
- name : Generate snapshot version
20
20
id : version
Original file line number Diff line number Diff line change 15
15
jobs :
16
16
test_against_nextjs_release :
17
17
name : CI (next@${{ inputs.version }}${{ matrix.base-path && ' basePath' || ''}}${{ matrix.react-compiler && ' ⚛️⚡️' || ''}})
18
- runs-on : ubuntu-latest
18
+ runs-on : ubuntu-24.04
19
19
strategy :
20
20
fail-fast : false
21
21
matrix :
57
57
58
58
invalidate-isr-cache :
59
59
name : Invalidate ISR cache
60
- runs-on : ubuntu-latest
60
+ runs-on : ubuntu-24.04
61
61
needs : test_against_nextjs_release
62
62
if : ${{ always() }}
63
63
steps :
You can’t perform that action at this time.
0 commit comments