Skip to content

Commit ad0b717

Browse files
committed
Bump actions/cache from 5.0.2 to 5.0.3
1 parent 260682e commit ad0b717

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
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4242
with:
4343
persist-credentials: false
44-
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
44+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
4545
with:
4646
path: ~/.m2/repository
4747
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
@@ -58,7 +58,7 @@ jobs:
5858
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5959
with:
6060
persist-credentials: false
61-
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
61+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
6262
with:
6363
path: ~/.m2/repository
6464
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
@@ -91,7 +91,7 @@ jobs:
9191
with:
9292
persist-credentials: false
9393
- name: Maven cache
94-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
94+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
9595
with:
9696
path: ~/.m2/repository
9797
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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
89+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
111+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
126+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
144+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
145145
with:
146146
key: ${{ env.CACHE-ALL }}
147147
path: target
@@ -177,7 +177,7 @@ jobs:
177177
with:
178178
persist-credentials: false
179179
- name: Retrieve saved target tree
180-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
180+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
181181
with:
182182
key: ${{ env.CACHE-ALL }}
183183
path: target
@@ -186,7 +186,7 @@ jobs:
186186
- name: Show files
187187
run: ls -l target
188188
- name: Cache Maven
189-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
189+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
190190
with:
191191
path: ~/.m2/repository
192192
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -225,7 +225,7 @@ jobs:
225225
run: |
226226
echo "IMAGE_PREFIX=$(echo ${{ env.REGISTRY }}/${{ github.repository }} | tr '[A-Z]' '[a-z]')" >>$GITHUB_ENV
227227
- name: Retrieve saved target tree
228-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
228+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 #v5.0.3
229229
with:
230230
key: ${{ env.CACHE-ALL }}
231231
path: target

0 commit comments

Comments
 (0)