From 0017e5e00f986caaebf7b387cacaf72776cd0b78 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 22:27:54 +0000 Subject: [PATCH] chore(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/maven.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 3dd20d9..a11778d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -33,7 +33,7 @@ jobs: - name: Cache build output if: github.ref_name == 'main' id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: target key: build-output-${{ github.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ca1d628..5894db1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: - name: Restore cached build output id: cache-output-restore - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: target key: build-output-${{ github.event.workflow_run.head_sha }}