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
* Change Node.js version to 24
Update Node.js version from 20 to 24 in action.yml
* update and vulnerability fixes
* update node version check
* update licences
* node version check update
* update version for test
* node version
* update node version to 24.0.0 in tool-versions and package-volta.json
* node 24
* update to 24
* update to specify engines
* check failures fix
* update package-lock.json
* licensed update
* check failure fix
* documentation update
---------
Co-authored-by: Aparna Jyothi <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ See [action.yml](action.yml)
18
18
19
19
<!-- start usage -->
20
20
```yaml
21
-
- uses: actions/setup-node@v4
21
+
- uses: actions/setup-node@v5
22
22
with:
23
23
# Version Spec of the version to use in SemVer notation.
24
24
# It also admits such aliases as lts/*, latest, nightly and canary builds
@@ -98,8 +98,8 @@ See [action.yml](action.yml)
98
98
99
99
```yaml
100
100
steps:
101
-
- uses: actions/checkout@v4
102
-
- uses: actions/setup-node@v4
101
+
- uses: actions/checkout@v5
102
+
- uses: actions/setup-node@v5
103
103
with:
104
104
node-version: 18
105
105
- run: npm ci
@@ -159,8 +159,8 @@ See the examples of using cache for `yarn`/`pnpm` and `cache-dependency-path` in
159
159
160
160
```yaml
161
161
steps:
162
-
- uses: actions/checkout@v4
163
-
- uses: actions/setup-node@v4
162
+
- uses: actions/checkout@v5
163
+
- uses: actions/setup-node@v5
164
164
with:
165
165
node-version: 20
166
166
cache: 'npm'
@@ -172,8 +172,8 @@ steps:
172
172
173
173
```yaml
174
174
steps:
175
-
- uses: actions/checkout@v4
176
-
- uses: actions/setup-node@v4
175
+
- uses: actions/checkout@v5
176
+
- uses: actions/setup-node@v5
177
177
with:
178
178
node-version: 20
179
179
cache: 'npm'
@@ -193,9 +193,9 @@ jobs:
193
193
node: [ 14, 16, 18 ]
194
194
name: Node ${{ matrix.node }} sample
195
195
steps:
196
-
- uses: actions/checkout@v4
196
+
- uses: actions/checkout@v5
197
197
- name: Setup node
198
-
uses: actions/setup-node@v4
198
+
uses: actions/setup-node@v5
199
199
with:
200
200
node-version: ${{ matrix.node }}
201
201
- run: npm ci
@@ -209,7 +209,7 @@ jobs:
209
209
To get a higher rate limit, you can [generate a personal access token on github.com](https://github.com/settings/tokens/new) and pass it as the `token` input for the action:
0 commit comments