Skip to content

Commit 39647a2

Browse files
Bump actions/cache from 4 to 5 (#2380)
1 parent d8b3620 commit 39647a2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
architecture: 'x64'
7474

7575
- name: Cache Pip Dependencies
76-
uses: actions/cache@v4
76+
uses: actions/cache@v5
7777
with:
7878
path: ~/.cache/pip
7979
key: ${{ runner.os }}-pip-docs-${{ hashFiles('src/main/python/docs/requires-docs.txt') }}

.github/workflows/javaTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
uses: actions/checkout@v5
130130

131131
- name: Cache Maven Dependencies
132-
uses: actions/cache@v4
132+
uses: actions/cache@v5
133133
with:
134134
path: ~/.m2/repository
135135
key: ${{ runner.os }}-maven-test-${{ hashFiles('**/pom.xml') }}

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,21 +70,21 @@ jobs:
7070
cache: 'maven'
7171

7272
- name: Cache Pip Dependencies
73-
uses: actions/cache@v4
73+
uses: actions/cache@v5
7474
with:
7575
path: ~/.cache/pip
7676
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('src/main/python/setup.py') }}
7777

7878
- name: Cache Datasets
79-
uses: actions/cache@v4
79+
uses: actions/cache@v5
8080
with:
8181
path: |
8282
src/main/python/systemds/examples/tutorials/mnist
8383
src/main/python/systemds/examples/tutorials/adult/data.zip
8484
key: ${{ runner.os }}-mnist-${{ hashFiles('src/main/python/systemds/examples/tutorials/mnist.py') }}-${{ hashFiles('src/main/python/systemds/examples/tutorials/adult.py') }}
8585

8686
- name: Cache Deb Dependencies
87-
uses: actions/cache@v4
87+
uses: actions/cache@v5
8888
with:
8989
path: /var/cache/apt/archives
9090
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/python.yml') }}
@@ -146,7 +146,7 @@ jobs:
146146
- name: Cache Torch Hub
147147
if: ${{ matrix.test_mode == 'scuro' }}
148148
id: torch-cache
149-
uses: actions/cache@v4
149+
uses: actions/cache@v5
150150
with:
151151
path: .torch
152152
key: ${{ runner.os }}-torch-${{ hashFiles('requirements.txt') }}

.github/workflows/release-scripts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- run: printf "JAVA_HOME = $JAVA_HOME \n"
5555

5656
- name: Cache local Maven repository
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: ~/.m2/repository
6060
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)