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
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ If `check-latest` is set to `true`, the action first checks if the cached versio
10
10
11
11
```yaml
12
12
steps:
13
-
- uses: actions/checkout@v2
13
+
- uses: actions/checkout@v3
14
14
- uses: actions/setup-node@v3
15
15
with:
16
16
node-version: '14'
@@ -27,7 +27,7 @@ See [supported version syntax](https://github.com/actions/setup-node#supported-v
27
27
28
28
```yaml
29
29
steps:
30
-
- uses: actions/checkout@v2
30
+
- uses: actions/checkout@v3
31
31
- uses: actions/setup-node@v3
32
32
with:
33
33
node-version-file: '.nvmrc'
@@ -46,7 +46,7 @@ jobs:
46
46
runs-on: windows-latest
47
47
name: Node sample
48
48
steps:
49
-
- uses: actions/checkout@v2
49
+
- uses: actions/checkout@v3
50
50
- uses: actions/setup-node@v3
51
51
with:
52
52
node-version: '14'
@@ -62,7 +62,7 @@ The action follows [actions/cache](https://github.com/actions/cache/blob/main/ex
62
62
Yarn caching handles both yarn versions: 1 or 2.
63
63
```yaml
64
64
steps:
65
-
- uses: actions/checkout@v2
65
+
- uses: actions/checkout@v3
66
66
- uses: actions/setup-node@v3
67
67
with:
68
68
node-version: '14'
@@ -81,7 +81,7 @@ steps:
81
81
# NOTE: pnpm caching support requires pnpm version >= 6.10.0
0 commit comments