Skip to content

Commit dca9861

Browse files
authored
feat(deps): update action from node20 to node24 (#1639)
BREAKING CHANGE: Update action from node20 to node24 cypress-io/github-action@v6, using node20, is deprecated
1 parent e768e6d commit dca9861

34 files changed

Lines changed: 115 additions & 111 deletions

.github/workflows/check-dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
- name: Install Node.js
2323
uses: actions/setup-node@v6
2424
with:
25-
# Action runs: using: node20 as defined in
25+
# Action runs: using: node24 as defined in
2626
# https://github.com/cypress-io/github-action/blob/master/action.yml
2727
# Node.js minor version is aligned to
2828
# https://github.com/actions/runner/blob/main/src/Misc/externals.sh
29-
node-version: 20.20.0
29+
node-version: 24.13.0
3030
- run: npm ci
3131
- run: npm run format
3232
- run: npm run build

.github/workflows/example-basic-pnpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cache-dependency-path: examples/basic-pnpm/pnpm-lock.yaml
3333

3434
- name: Cypress tests
35-
uses: ./ # if copying, replace with cypress-io/github-action@v6
35+
uses: ./ # if copying, replace with cypress-io/github-action@v7
3636
with:
3737
working-directory: examples/basic-pnpm
3838
# print information about detected browsers, etc

.github/workflows/example-basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v6
2020

2121
- name: Cypress tests
22-
uses: ./ # if copying, replace with cypress-io/github-action@v6
22+
uses: ./ # if copying, replace with cypress-io/github-action@v7
2323
# the parameters below are only necessary
2424
# because we are running these examples in a monorepo
2525
with:

.github/workflows/example-build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: example-build-artifacts
1111
# uses: ./
1212
# which runs the action code from the current branch.
1313
# If you copy this workflow to another repo, replace the line with
14-
# uses: cypress-io/github-action@v6
14+
# uses: cypress-io/github-action@v7
1515
on:
1616
push:
1717
branches:

.github/workflows/example-chrome-for-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
chrome-version: 140
2020
- name: Cypress info
21-
uses: ./ # if copying, replace with cypress-io/github-action@v6
21+
uses: ./ # if copying, replace with cypress-io/github-action@v7
2222
with:
2323
# just for full picture after installing Cypress
2424
# print information about detected browsers, etc

.github/workflows/example-chrome.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: example-chrome
33
# uses: ./
44
# which runs the action code from the current branch.
55
# If you copy this workflow to another repo, replace the line with
6-
# uses: cypress-io/github-action@v6
6+
# uses: cypress-io/github-action@v7
77
on:
88
push:
99
branches:

.github/workflows/example-component-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v6
1515
- name: Cypress run
16-
uses: ./ # if copying, replace with cypress-io/github-action@v6
16+
uses: ./ # if copying, replace with cypress-io/github-action@v7
1717
with:
1818
working-directory: examples/component-tests
1919
component: true

.github/workflows/example-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: example-config
33
# uses: ./
44
# which runs the action code from the current branch.
55
# If you copy this workflow to another repo, replace the line with
6-
# uses: cypress-io/github-action@v6
6+
# uses: cypress-io/github-action@v7
77
on:
88
push:
99
branches:

.github/workflows/example-cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
uses: actions/checkout@v6
1414

1515
- name: Cypress nightly tests 🌃
16-
uses: ./ # if copying, replace with cypress-io/github-action@v6
16+
uses: ./ # if copying, replace with cypress-io/github-action@v7
1717
with:
1818
working-directory: examples/basic

.github/workflows/example-custom-ci-build-id.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ name: example-custom-ci-build-id
1919
# uses: ./
2020
# which runs the action code from the current branch.
2121
# If you copy this workflow to another repo, replace the line with
22-
# uses: cypress-io/github-action@v6
22+
# uses: cypress-io/github-action@v7
2323
on:
2424
push:
2525
branches:

0 commit comments

Comments
 (0)