diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-01-17 22:03:47 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-17 22:03:47 +0000 |
commit | 504f33151a5071dfb580ec81a96cac4987d043b7 (patch) | |
tree | ba989c4cc3be4f5063ffb6c819bbc443d2f16df8 | |
parent | b427dc870142baff208cdc08fd9499394ecc4039 (diff) |
build(deps): bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/cache
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6f519741..c8d49de7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,7 +60,7 @@ jobs: fetch-depth: 2 # Fixes codecov error 'Issue detecting commit SHA' - name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules> - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -96,7 +96,7 @@ jobs: uses: actions/checkout@v4 - name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules> - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} |