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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ See [action.yml](action.yml)
35
35
36
36
<!-- start usage -->
37
37
```yaml
38
-
- uses: actions/setup-node@v6
38
+
- uses: linz/setup-node@XXX
39
39
with:
40
40
# Version Spec of the version to use in SemVer notation.
41
41
# It also admits such aliases as lts/*, latest, nightly and canary builds
@@ -117,7 +117,7 @@ See [action.yml](action.yml)
117
117
```yaml
118
118
steps:
119
119
- uses: actions/checkout@v5
120
-
- uses: actions/setup-node@v6
120
+
- uses: linz/setup-node@XXX
121
121
with:
122
122
node-version: 24
123
123
- run: npm ci
@@ -166,7 +166,7 @@ See the examples of using cache for `yarn`/`pnpm` and `cache-dependency-path` in
166
166
```yaml
167
167
steps:
168
168
- uses: actions/checkout@v5
169
-
- uses: actions/setup-node@v6
169
+
- uses: linz/setup-node@XXX
170
170
with:
171
171
node-version: 24
172
172
cache: 'npm'
@@ -179,7 +179,7 @@ steps:
179
179
```yaml
180
180
steps:
181
181
- uses: actions/checkout@v5
182
-
- uses: actions/setup-node@v6
182
+
- uses: linz/setup-node@XXX
183
183
with:
184
184
node-version: 24
185
185
cache: 'npm'
@@ -195,7 +195,7 @@ This behavior is controlled by the `package-manager-cache` input, which defaults
195
195
```yaml
196
196
steps:
197
197
- uses: actions/checkout@v5
198
-
- uses: actions/setup-node@v6
198
+
- uses: linz/setup-node@XXX
199
199
with:
200
200
package-manager-cache: false
201
201
- run: npm ci
@@ -215,7 +215,7 @@ jobs:
215
215
steps:
216
216
- uses: actions/checkout@v5
217
217
- name: Setup node
218
-
uses: actions/setup-node@v6
218
+
uses: linz/setup-node@XXX
219
219
with:
220
220
node-version: ${{ matrix.node }}
221
221
- run: npm ci
@@ -229,7 +229,7 @@ jobs:
229
229
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