Skip to content

Commit d6b8cd9

Browse files
committed
Upgrade actions setup-java to 4.7.1 and cache to 4.2.3
1 parent 8b27b99 commit d6b8cd9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/actions/common/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ runs:
113113
set-java-home: 'false'
114114
- name: Set up JDK
115115
if: ${{ inputs.setup-latest-java == 'false' }}
116-
uses: actions/setup-java@v4.1.0
116+
uses: actions/setup-java@v4.7.1
117117
with:
118118
distribution: ${{ env.JAVA_DISTRO }}
119119
java-version: ${{ env.JAVA_VERSION }}
@@ -127,7 +127,7 @@ runs:
127127
version: stable
128128
- name: Cache local Maven repository (read-write)
129129
if: ${{ inputs.maven-cache == 'read-write' }}
130-
uses: actions/[email protected].0
130+
uses: actions/[email protected].3
131131
with:
132132
# See https://github.com/actions/toolkit/issues/713
133133
# Include must not match top level directories
@@ -141,7 +141,7 @@ runs:
141141
local-maven-
142142
- name: Cache local Maven repository (read-only)
143143
if: ${{ inputs.maven-cache == 'read-only' }}
144-
uses: actions/cache/[email protected].0
144+
uses: actions/cache/[email protected].3
145145
with:
146146
path: |
147147
.m2/repository/**/*.*
@@ -152,7 +152,7 @@ runs:
152152
local-maven-
153153
- name: Build cache (read-write)
154154
if: ${{ inputs.build-cache == 'read-write' }}
155-
uses: actions/[email protected].0
155+
uses: actions/[email protected].3
156156
with:
157157
path: |
158158
./**/target/**
@@ -173,7 +173,7 @@ runs:
173173
key: build-cache-${{ github.run_id }}-${{ github.run_attempt }}-${{ inputs.build-cache-id }}
174174
- name: Build cache (read-only)
175175
if: ${{ inputs.build-cache == 'read-only' }}
176-
uses: actions/cache/[email protected].0
176+
uses: actions/cache/[email protected].3
177177
with:
178178
path: |
179179
./**/target/**

0 commit comments

Comments
 (0)