Skip to content

Commit 5084e03

Browse files
author
Rob Tjalma
authored
Merge pull request #69 from com-pas/dependabot/github_actions/actions/cache-3
Bump actions/cache from 2 to 3
2 parents 8b1200b + 3ed5904 commit 5084e03

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
id: buildx
2727
uses: docker/setup-buildx-action@v1
2828
- name: Cache Docker Register
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
path: /tmp/.buildx-cache
3232
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
3333
- name: Cache Maven packages
34-
uses: actions/cache@v2.1.6
34+
uses: actions/cache@v3
3535
with:
3636
path: ~/.m2
3737
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/release-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2626
password: ${{ secrets.DOCKER_HUB_TOKEN }}
2727
- name: Cache Docker Register
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
2929
with:
3030
path: /tmp/.buildx-cache
3131
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
3232
- name: Cache Maven packages
33-
uses: actions/cache@v2.1.6
33+
uses: actions/cache@v3
3434
with:
3535
path: ~/.m2
3636
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/sonarcloud-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
distribution: 'zulu'
3737
java-version: '11'
3838
- name: Cache SonarCloud packages
39-
uses: actions/cache@v2.1.6
39+
uses: actions/cache@v3
4040
with:
4141
path: ~/.sonar/cache
4242
key: ${{ runner.os }}-sonar
4343
restore-keys: ${{ runner.os }}-sonar
4444
- name: Cache Maven packages
45-
uses: actions/cache@v2.1.6
45+
uses: actions/cache@v3
4646
with:
4747
path: ~/.m2
4848
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)