Skip to content

Commit 892290f

Browse files
committed
ci: bump GitHub Actions to node24 runtimes
actions/checkout@v4, actions/setup-node@v4 and cypress-io/github-action@v6 all run on the node20 action runtime, which GitHub is deprecating — hence the "Node.js 20 is deprecated" warning on the Actions runner. Bump each to the major that runs on node24: - actions/checkout v4 -> v5 (testing, e2e, publish) - actions/setup-node v4 -> v5 (testing, publish) - cypress-io/github-action v6 -> v7 (e2e) This is the action runtime only; the build/test Node (node-version 22.17.1) is unchanged. cypress-io/github-action v7.0.0's sole breaking change is the node20 -> node24 runtime bump, so the build/start/browser inputs are unaffected.
1 parent 0ce405a commit 892290f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/e2e_testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
runs-on: ubuntu-22.04
77
steps:
88
- name: Checkout
9-
uses: actions/checkout@v4
9+
uses: actions/checkout@v5
1010
- name: Cypress run
11-
uses: cypress-io/github-action@v6
11+
uses: cypress-io/github-action@v7
1212
with:
1313
build: npm run --max_old_space_size=12288 build
1414
start: npm --max_old_space_size=12288 start

.github/workflows/publish_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- uses: actions/setup-node@v4
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-node@v5
1313
with:
1414
node-version: 22.17.1
1515
registry-url: https://registry.npmjs.org/

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
testing:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
10-
- uses: actions/setup-node@v4
9+
- uses: actions/checkout@v5
10+
- uses: actions/setup-node@v5
1111
with:
1212
node-version: 22.17.1
1313
- run: yarn install --frozen-lockfile

0 commit comments

Comments
 (0)