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: docs/advanced-usage.md
+20-20Lines changed: 20 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ If `check-latest` is set to `true`, the action first checks if the cached versio
64
64
65
65
```yaml
66
66
steps:
67
-
- uses: actions/checkout@v5
67
+
- uses: actions/checkout@v6
68
68
- uses: actions/setup-node@v6
69
69
with:
70
70
node-version: '24'
@@ -82,7 +82,7 @@ See [supported version syntax](https://github.com/actions/setup-node#supported-v
82
82
83
83
```yaml
84
84
steps:
85
-
- uses: actions/checkout@v5
85
+
- uses: actions/checkout@v6
86
86
- uses: actions/setup-node@v6
87
87
with:
88
88
node-version-file: '.nvmrc'
@@ -116,7 +116,7 @@ jobs:
116
116
runs-on: windows-latest
117
117
name: Node sample
118
118
steps:
119
-
- uses: actions/checkout@v5
119
+
- uses: actions/checkout@v6
120
120
- uses: actions/setup-node@v6
121
121
with:
122
122
node-version: '24'
@@ -137,7 +137,7 @@ jobs:
137
137
runs-on: ubuntu-latest
138
138
name: Node sample
139
139
steps:
140
-
- uses: actions/checkout@v5
140
+
- uses: actions/checkout@v6
141
141
- uses: actions/setup-node@v6
142
142
with:
143
143
node-version: '24.0.0-v8-canary' # it will install the latest v8 canary release for node 24.0.0
@@ -152,7 +152,7 @@ jobs:
152
152
runs-on: ubuntu-latest
153
153
name: Node sample
154
154
steps:
155
-
- uses: actions/checkout@v5
155
+
- uses: actions/checkout@v6
156
156
- uses: actions/setup-node@v6
157
157
with:
158
158
node-version: '24-v8-canary' # it will install the latest v8 canary release for node 24
0 commit comments