From 9dbc0d738f67012ffc24d3e45cb5f6dc83c63e42 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 7 Oct 2024 04:59:08 +0000
Subject: [PATCH] chore: Bump actions/cache from 4.0.2 to 4.1.0

Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.0.
- [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.2...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
---
 .github/workflows/build.yml            | 4 ++--
 .github/workflows/early-access.yml     | 6 +++---
 .github/workflows/mutation-testing.yml | 2 +-
 .github/workflows/release.yml          | 6 +++---
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 18a0f0fb..12298d1e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -25,7 +25,7 @@ jobs:
         cache: maven
     - name: Cache Maven packages
       id: restore-maven-package-cache
-      uses: actions/cache/restore@v4.0.2
+      uses: actions/cache/restore@v4.1.0
       with:
         path: ~/.m2
         key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -33,7 +33,7 @@ jobs:
     - name: Build with Maven
       run: mvn -B verify
     - name: Save downloaded Maven packages
-      uses: actions/cache/save@v4.0.2
+      uses: actions/cache/save@v4.1.0
       with:
         path: ~/.m2
         key: ${{ steps.restore-maven-package-cache.outputs.cache-primary-key }}
diff --git a/.github/workflows/early-access.yml b/.github/workflows/early-access.yml
index b622ca45..186274aa 100644
--- a/.github/workflows/early-access.yml
+++ b/.github/workflows/early-access.yml
@@ -75,7 +75,7 @@ jobs:
 
       - name: Cache Maven packages
         id: restore-maven-package-cache
-        uses: actions/cache/restore@v4.0.2
+        uses: actions/cache/restore@v4.1.0
         with:
           path: ~/.m2
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -105,7 +105,7 @@ jobs:
             target/distributions/*.tar.gz
 
       - name: Save downloaded Maven packages
-        uses: actions/cache/save@v4.0.2
+        uses: actions/cache/save@v4.1.0
         with:
           path: ~/.m2
           key: ${{ steps.restore-maven-package-cache.outputs.cache-primary-key }}
@@ -141,7 +141,7 @@ jobs:
           find /tmp/artifacts/ -name "mcs*" -exec mv -v {} artifacts/ \;
 
       - name: Cache Maven packages
-        uses: actions/cache@v4.0.2
+        uses: actions/cache@v4.1.0
         with:
           path: ~/.m2
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/mutation-testing.yml b/.github/workflows/mutation-testing.yml
index 5cea556e..5d977293 100644
--- a/.github/workflows/mutation-testing.yml
+++ b/.github/workflows/mutation-testing.yml
@@ -19,7 +19,7 @@ jobs:
           fetch-depth: 0
 
       - name: Cache Maven packages
-        uses: actions/cache@v4.0.2
+        uses: actions/cache@v4.1.0
         with:
           path: ~/.m2
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ca1111d3..478b9c31 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -28,7 +28,7 @@ jobs:
           distribution: 'adopt'
 
       - name: Cache Maven packages
-        uses: actions/cache/restore@v4.0.2
+        uses: actions/cache/restore@v4.1.0
         with:
           path: ~/.m2
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -133,7 +133,7 @@ jobs:
         if: matrix.os == 'ubuntu-latest'
 
       - name: Cache Maven packages
-        uses: actions/cache@v4.0.2
+        uses: actions/cache@v4.1.0
         with:
           path: ~/.m2
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -221,7 +221,7 @@ jobs:
           distribution: 'adopt'
 
       - name: Cache Maven packages
-        uses: actions/cache@v4.0.2
+        uses: actions/cache@v4.1.0
         with:
           path: ~/.m2
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}