Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/actions/common/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ runs:
set-java-home: 'false'
- name: Set up JDK
if: ${{ inputs.setup-latest-java == 'false' }}
uses: actions/setup-java@v4.1.0
uses: actions/setup-java@v4.7.1
with:
distribution: ${{ env.JAVA_DISTRO }}
java-version: ${{ env.JAVA_VERSION }}
Expand All @@ -127,7 +127,7 @@ runs:
version: stable
- name: Cache local Maven repository (read-write)
if: ${{ inputs.maven-cache == 'read-write' }}
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
# See https://github.com/actions/toolkit/issues/713
# Include must not match top level directories
Expand All @@ -141,7 +141,7 @@ runs:
local-maven-
- name: Cache local Maven repository (read-only)
if: ${{ inputs.maven-cache == 'read-only' }}
uses: actions/cache/[email protected].0
uses: actions/cache/[email protected].3
with:
path: |
.m2/repository/**/*.*
Expand All @@ -152,7 +152,7 @@ runs:
local-maven-
- name: Build cache (read-write)
if: ${{ inputs.build-cache == 'read-write' }}
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
path: |
./**/target/**
Expand All @@ -173,7 +173,7 @@ runs:
key: build-cache-${{ github.run_id }}-${{ github.run_attempt }}-${{ inputs.build-cache-id }}
- name: Build cache (read-only)
if: ${{ inputs.build-cache == 'read-only' }}
uses: actions/cache/[email protected].0
uses: actions/cache/[email protected].3
with:
path: |
./**/target/**
Expand Down