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
+6-6
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@v3
21
+
- uses: actions/setup-node@v4
22
22
with:
23
23
# Version Spec of the version to use in SemVer notation.
24
24
# It also emits such aliases as lts, latest, nightly and canary builds
@@ -84,7 +84,7 @@ See [action.yml](action.yml)
84
84
```yaml
85
85
steps:
86
86
- uses: actions/checkout@v4
87
-
- uses: actions/setup-node@v3
87
+
- uses: actions/setup-node@v4
88
88
with:
89
89
node-version: 18
90
90
- run: npm ci
@@ -133,7 +133,7 @@ See the examples of using cache for `yarn`/`pnpm` and `cache-dependency-path` in
133
133
```yaml
134
134
steps:
135
135
- uses: actions/checkout@v4
136
-
- uses: actions/setup-node@v3
136
+
- uses: actions/setup-node@v4
137
137
with:
138
138
node-version: 16
139
139
cache: 'npm'
@@ -146,7 +146,7 @@ steps:
146
146
```yaml
147
147
steps:
148
148
- uses: actions/checkout@v4
149
-
- uses: actions/setup-node@v3
149
+
- uses: actions/setup-node@v4
150
150
with:
151
151
node-version: 16
152
152
cache: 'npm'
@@ -168,7 +168,7 @@ jobs:
168
168
steps:
169
169
- uses: actions/checkout@v4
170
170
- name: Setup node
171
-
uses: actions/setup-node@v3
171
+
uses: actions/setup-node@v4
172
172
with:
173
173
node-version: ${{ matrix.node }}
174
174
- run: npm ci
@@ -182,7 +182,7 @@ jobs:
182
182
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