You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/basic-validation.yml
+3-3
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ on:
24
24
description: "Optional input to set the version of Node.js used to build the project. The input syntax corresponds to the setup-node's one"
25
25
required: false
26
26
type: string
27
-
default: "16.x"
27
+
default: "20.x"
28
28
node-caching:
29
29
description: "Optional input to set up caching for the setup-node action. The input syntax corresponds to the setup-node's one. Set to an empty string if caching isn't needed"
Copy file name to clipboardexpand all lines: .github/workflows/check-dist.yml
+5-5
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ on:
16
16
description: "Optional input to set the version of Node.js used to build a project. The input syntax corresponds to the setup-node's one"
17
17
required: false
18
18
type: string
19
-
default: "16.x"
19
+
default: "20.x"
20
20
node-caching:
21
21
description: "Optional input to set up caching for the setup-node action. The input syntax corresponds to the setup-node's one. Set to an empty string if caching isn't needed"
22
22
required: false
@@ -29,10 +29,10 @@ jobs:
29
29
30
30
steps:
31
31
- name: Checkout
32
-
uses: actions/checkout@v3
32
+
uses: actions/checkout@v4
33
33
34
34
- name: Setup Node.js ${{inputs.node-version}}
35
-
uses: actions/setup-node@v3
35
+
uses: actions/setup-node@v4
36
36
with:
37
37
node-version: ${{inputs.node-version}}
38
38
cache: ${{inputs.node-caching}}
@@ -55,7 +55,7 @@ jobs:
55
55
# If inners of the dist directory were different than expected, upload the expected version as an artifact
0 commit comments