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/checks.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -512,7 +512,7 @@ jobs:
512
512
# ERROR: The step is not run yet at this point
513
513
- run: echo ${{ steps.cache.outputs.cache-hit }}
514
514
# actions/cache sets cache-hit output
515
-
- uses: actions/cache@v3
515
+
- uses: actions/cache@v4
516
516
id: cache
517
517
with:
518
518
key: ${{ hashFiles('**/*.lock') }}
@@ -1755,7 +1755,7 @@ jobs:
1755
1755
test:
1756
1756
runs-on: ubuntu-latest
1757
1757
steps:
1758
-
- uses: actions/cache@v3
1758
+
- uses: actions/cache@v4
1759
1759
with:
1760
1760
keys: |
1761
1761
${{ hashFiles('**/*.lock') }}
@@ -1767,28 +1767,28 @@ jobs:
1767
1767
Output:
1768
1768
1769
1769
```
1770
-
test.yaml:7:15: missing input "key" which is required by action "actions/cache@v3". all required inputs are "key", "path" [action]
1770
+
test.yaml:7:15: missing input "key" which is required by action "actions/cache@v4". all required inputs are "key", "path" [action]
1771
1771
|
1772
-
7 | - uses: actions/cache@v3
1772
+
7 | - uses: actions/cache@v4
1773
1773
| ^~~~~~~~~~~~~~~~
1774
-
test.yaml:9:11: input "keys" is not defined in action "actions/cache@v3". available inputs are "key", "path", "restore-keys", "upload-chunk-size" [action]
1774
+
test.yaml:9:11: input "keys" is not defined in action "actions/cache@v4". available inputs are "key", "path", "restore-keys", "upload-chunk-size" [action]
0 commit comments