Skip to content

Commit be12a18

Browse files
committed
Bump actions/cache from 4.3.0 to 5.0.1
1 parent 96ae475 commit be12a18

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/benchmarkadhoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4141
with:
4242
persist-credentials: false
43-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
43+
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
4444
with:
4545
path: ~/.m2/repository
4646
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5858
with:
5959
persist-credentials: false
60-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
60+
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
6161
with:
6262
path: ~/.m2/repository
6363
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
with:
9191
persist-credentials: false
9292
- name: Maven cache
93-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
93+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
9494
with:
9595
path: ~/.m2/repository
9696
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/maven_crosstest.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
time IMAGE_PREFIX=${IMAGE_PREFIX} docker compose -f src/docker/docker-compose-gh.yaml run --quiet-pull crypto-gh src/docker/build_linux32.sh
8787
ls -l target
8888
- name: Save generated Linux binaries
89-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
89+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
9090
with:
9191
key: ${{ env.CACHE-LINUX }}
9292
path: target
@@ -108,7 +108,7 @@ jobs:
108108
server-id: apache.snapshots.https # Value of the distributionManagement/repository/id field of the pom.xml
109109
server-username: NEXUS_USER # env variable for username in deploy
110110
server-password: NEXUS_PW # env variable for token in deploy
111-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
111+
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
112112
with:
113113
path: ~/.m2/repository
114114
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -123,7 +123,7 @@ jobs:
123123
mvn -V -B -ntp -DskipTests -Drat.skip process-classes -Dtarget.name=mac-aarch64
124124
ls -l target
125125
- name: Retrieve saved Linux binaries
126-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
126+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
127127
with:
128128
key: ${{ env.CACHE-LINUX }}
129129
path: target
@@ -141,7 +141,7 @@ jobs:
141141
# At some point would like to run the cross tests using only the jars
142142
# In the meantime, use the target class structure
143143
- name: Save generated Linux + macOS binaries
144-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
144+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
145145
with:
146146
key: ${{ env.CACHE-ALL }}
147147
path: target
@@ -176,7 +176,7 @@ jobs:
176176
with:
177177
persist-credentials: false
178178
- name: Retrieve saved target tree
179-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
179+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
180180
with:
181181
key: ${{ env.CACHE-ALL }}
182182
path: target
@@ -185,7 +185,7 @@ jobs:
185185
- name: Show files
186186
run: ls -l target
187187
- name: Cache Maven
188-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
188+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
189189
with:
190190
path: ~/.m2/repository
191191
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -224,7 +224,7 @@ jobs:
224224
run: |
225225
echo "IMAGE_PREFIX=$(echo ${{ env.REGISTRY }}/${{ github.repository }} | tr '[A-Z]' '[a-z]')" >>$GITHUB_ENV
226226
- name: Retrieve saved target tree
227-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
227+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
228228
with:
229229
key: ${{ env.CACHE-ALL }}
230230
path: target

0 commit comments

Comments
 (0)