1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-05-06 10:09:55 +02:00

Bump action version

This commit is contained in:
Oleg A 2024-04-16 13:45:47 +03:00
parent 0c45773b62
commit e4bce056ad
No known key found for this signature in database
GPG key ID: 5FE046817A9657C5
8 changed files with 83 additions and 83 deletions

View file

@ -23,7 +23,7 @@ If you are using separate jobs for generating common artifacts and sharing them
```yaml
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Dependencies
run: /install.sh
@ -47,7 +47,7 @@ Let's say we have a restore step that computes a key at runtime.
#### Restore a cache
```yaml
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: restore-cache
with:
key: cache-${{ hashFiles('**/lockfiles') }}
@ -74,7 +74,7 @@ There are instances where some flaky test cases would fail the entire workflow a
```yaml
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
.
. // restore if need be
.