From a254e004f9620bbca400b03a36b7fc74a99286ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 09:26:19 +0000 Subject: [PATCH] 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] --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 570ccb0..2ca5b97 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,17 +9,17 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Init Cache 1 - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .cache-test/one key: ${{ runner.os }}-test-1 - name: Init Cache 2 - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .cache-test/two key: ${{ runner.os }}-test-2 - name: Init Cache 3 - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .cache-test/three key: ${{ runner.os }}-test-3