From e2c2d425cb24c891382315497c37a6ba0246241f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 14:25:04 +0200 Subject: [PATCH] chore: bump actions/cache from 4.0.2 to 4.1.1 (#1925) --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1bf2ff5f3..5030f190b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: java-version: 21 architecture: x64 - name: Cache Maven packages - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1909f7465..acd216a5e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: architecture: x64 - name: Cache Maven packages - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09fe49479..8105d942a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: architecture: x64 #Uses an action to set up a cache using a certain key based on the hash of the dependencies - name: Cache Maven packages - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.1 with: path: ~/.m2 key: ubuntu-latest-m2-${{ hashFiles('**/pom.xml') }}