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: 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
@@ -147,8 +147,8 @@ See the examples of using cache for `yarn`/`pnpm` and `cache-dependency-path` in
147
147
148
148
```yaml
149
149
steps:
150
-
- uses: actions/checkout@v4
151
-
- uses: actions/setup-node@v4
150
+
- uses: actions/checkout@v5
151
+
- uses: actions/setup-node@v5
152
152
with:
153
153
node-version: 20
154
154
cache: 'npm'
@@ -160,8 +160,8 @@ steps:
160
160
161
161
```yaml
162
162
steps:
163
-
- uses: actions/checkout@v4
164
-
- uses: actions/setup-node@v4
163
+
- uses: actions/checkout@v5
164
+
- uses: actions/setup-node@v5
165
165
with:
166
166
node-version: 20
167
167
cache: 'npm'
@@ -181,9 +181,9 @@ jobs:
181
181
node: [ 14, 16, 18 ]
182
182
name: Node ${{ matrix.node }} sample
183
183
steps:
184
-
- uses: actions/checkout@v4
184
+
- uses: actions/checkout@v5
185
185
- name: Setup node
186
-
uses: actions/setup-node@v4
186
+
uses: actions/setup-node@v5
187
187
with:
188
188
node-version: ${{ matrix.node }}
189
189
- run: npm ci
@@ -197,7 +197,7 @@ jobs:
197
197
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