Skip to content

Commit 694fc17

Browse files
authored
[HWORKS-2055] hopsworks-api uses deprecated actions/cache: v2 which fails the PR tests (logicalclocks#496)
1 parent 50cff9c commit 694fc17

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/java.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
distribution: "adopt"
2222

2323
- name: Cache local Maven repository
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: ~/.m2/repository
2727
key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml') }}
@@ -50,7 +50,7 @@ jobs:
5050
distribution: "adopt"
5151

5252
- name: Cache local Maven repository
53-
uses: actions/cache@v2
53+
uses: actions/cache@v4
5454
with:
5555
path: ~/.m2/repository
5656
key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml') }}
@@ -79,7 +79,7 @@ jobs:
7979
distribution: "adopt"
8080

8181
- name: Cache local Maven repository
82-
uses: actions/cache@v2
82+
uses: actions/cache@v4
8383
with:
8484
path: ~/.m2/repository
8585
key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml') }}

.github/workflows/mkdocs-main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: python3 ./python/auto_doc.py
2828

2929
- name: Cache local Maven repository
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.m2/repository
3333
key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml') }}

.github/workflows/mkdocs-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: python3 ./python/auto_doc.py
3333

3434
- name: Cache local Maven repository
35-
uses: actions/cache@v2
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/.m2/repository
3838
key: ${{ runner.os }}-maven-${{ hashFiles('java/pom.xml') }}

0 commit comments

Comments
 (0)