Skip to content

Commit

Permalink
Upgrade cache action to 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Feb 7, 2025
1 parent e6f5ba3 commit f9238c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/common/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ runs:
java-version: ${{ env.JAVA_VERSION }}
- name: Cache local Maven repository (read-write)
if: ${{ inputs.maven-cache == 'read-write' }}
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
# See https://github.com/actions/toolkit/issues/713
# Include must not match top level directories
Expand All @@ -98,7 +98,7 @@ runs:
local-maven-
- name: Cache local Maven repository (read-only)
if: ${{ inputs.maven-cache == 'read-only' }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.2.0
with:
path: |
.m2/repository/**/*.*
Expand All @@ -109,7 +109,7 @@ runs:
local-maven-
- name: Build cache (read-write)
if: ${{ inputs.build-cache == 'read-write' }}
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: |
./**/target/**
Expand All @@ -121,7 +121,7 @@ runs:
build-cache-${{ github.run_id }}-
- name: Build cache (read-only)
if: ${{ inputs.build-cache == 'read-only' }}
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.2.0
with:
path: |
./**/target/**
Expand Down

0 comments on commit f9238c9

Please sign in to comment.