diff options
author | Michael Kriese <michael.kriese@gmx.de> | 2024-12-09 17:03:28 +0100 |
---|---|---|
committer | Michael Kriese <michael.kriese@gmx.de> | 2024-12-09 17:03:28 +0100 |
commit | a6cce3f1d5158247f81846fcbd8a156573943b95 (patch) | |
tree | 8ddd15b4d1e872806af83fe197ab6e84ffb4ff9a | |
parent | Merge pull request 'Replace actions/cascading-pr action with actions/cascadin... (diff) | |
parent | Update actions/cache action to v4 (diff) | |
download | forgejo-act-a6cce3f1d5158247f81846fcbd8a156573943b95.tar.xz forgejo-act-a6cce3f1d5158247f81846fcbd8a156573943b95.zip |
Merge pull request 'Update actions/cache action to v4' (#78) from renovate/actions-cache-4.x into main
Reviewed-on: https://code.forgejo.org/forgejo/act/pulls/78
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
-rw-r--r-- | .forgejo/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 330c635..2fb8e9c 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -18,7 +18,7 @@ jobs: steps: - name: cache go path id: cache-go-path - uses: https://code.forgejo.org/actions/cache@v3 + uses: https://code.forgejo.org/actions/cache@v4 with: path: /go_path key: go_path-${{ github.repository }}-${{ github.ref_name }} @@ -27,7 +27,7 @@ jobs: go_path- - name: cache go cache id: cache-go-cache - uses: https://code.forgejo.org/actions/cache@v3 + uses: https://code.forgejo.org/actions/cache@v4 with: path: /go_cache key: go_cache-${{ github.repository }}-${{ github.ref_name }} |