8000 Upgrade to Node.js v20 for the GitHub Actions Library [MABL-13559] (#61) · mablhq/github-run-tests-action@c3a4b51 · GitHub
[go: up one dir, main page]

Skip to content

Commit c3a4b51

Browse files
authored
Upgrade to Node.js v20 for the GitHub Actions Library [MABL-13559] (#61)
1 parent 7b8b4ec commit c3a4b51

File tree

10 files changed

+2977
-1442
lines changed

10 files changed

+2977
-1442
lines changed

.github/workflows/pr-workflow.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ jobs:
66
name: Mabl Test
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version-file: '.nvmrc'
13+
1114
- name: Install dependencies
1215
run: npm ci
1316

@@ -36,4 +39,4 @@ jobs:
3639
smoke-test
3740
http-headers: |
3841
X-Test-Header-1: 1234
39-
X-Test-Header-2: 5678
42+
X-Test-Header-2: 5678

.github/workflows/push-workflow.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ jobs:
77
name: Mabl Test
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
11-
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version-file: '.nvmrc'
14+
1215
- name: Install dependencies
1316
run: npm ci
1417

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: mabl Test
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
2626
- name: Functional test deployment
2727
id: mabl-test-deployment
@@ -49,7 +49,7 @@ jobs:
4949
name: mabl Test
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353
5454
- name: Functional test deployment
5555
id: mabl-test-deployment

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ outputs:
7575
description: "Number of mabl tests that failed against this deployment."
7676

7777
runs:
78-
using: "node16"
79-
main: "lib/src/index.js"
78+
using: "node20"
79+
main: "lib/src/entrypoint.js"

0 commit comments

Comments
 (0)
0