Skip to content

Commit

Permalink
chore: Bump actions/cache from 4.0.2 to 4.1.0
Browse files Browse the repository at this point in the history
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](actions/cache@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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 7, 2024
1 parent bb27e20 commit 9dbc0d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ 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') }}
restore-keys: ${{ runner.os }}-m2
- 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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down Expand Up @@ -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') }}
Expand Down Expand Up @@ -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') }}
Expand Down

0 comments on commit 9dbc0d7

Please sign in to comment.