From e00a797088fe94dd6ea21562131efbf9dc97a63f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 13:02:54 +0100 Subject: [PATCH] Bump actions/cache from 4.0.0 to 4.0.1 (#166) Bumps [actions/cache](https://github.com/actions/cache) from 4.0.0 to 4.0.1. - [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/v4.0.0...v4.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/push_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push_release.yml b/.github/workflows/push_release.yml index e288f13..f233607 100644 --- a/.github/workflows/push_release.yml +++ b/.github/workflows/push_release.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout uses: actions/checkout@v4.1.1 - name: Cache Local Maven Build - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: target key: release-build-${{ github.ref }} @@ -114,14 +114,14 @@ jobs: - name: Checkout uses: actions/checkout@v4.1.1 - name: Cache Local Maven Build - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: target key: ${{ github.workflow }}-build-${{ github.ref }} restore-keys: | ${{ github.workflow }}-build-${{ github.ref }} - name: Cache Local Docker - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: /var/lib/docker key: ${{ github.workflow }}-docker-${{ github.ref }}