Skip to content

Commit 3b956cd

Browse files
author
Rob Tjalma
authored
Merge pull request #32 from com-pas/dependabot/github_actions/actions/cache-3
Bump actions/cache from 2 to 3
2 parents 2c69522 + 8e69d15 commit 3b956cd

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
@@ -28,12 +28,12 @@ jobs:
2828
id: buildx
2929
uses: docker/setup-buildx-action@v1
3030
- name: Cache Docker Register
31-
uses: actions/cache@v2
31+
uses: actions/cache@v3
3232
with:
3333
path: /tmp/.buildx-cache
3434
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
3535
- name: Cache Maven packages
36-
uses: actions/cache@v2.1.6
36+
uses: actions/cache@v3
3737
with:
3838
path: ~/.m2
3939
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
@@ -27,12 +27,12 @@ jobs:
2727
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2828
password: ${{ secrets.DOCKER_HUB_TOKEN }}
2929
- name: Cache Docker Register
30-
uses: actions/cache@v2
30+
uses: actions/cache@v3
3131
with:
3232
path: /tmp/.buildx-cache
3333
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
3434
- name: Cache Maven packages
35-
uses: actions/cache@v2.1.6
35+
uses: actions/cache@v3
3636
with:
3737
path: ~/.m2
3838
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
@@ -37,13 +37,13 @@ jobs:
3737
distribution: 'zulu'
3838
java-version: '11'
3939
- name: Cache SonarCloud packages
40-
uses: actions/cache@v2.1.6
40+
uses: actions/cache@v3
4141
with:
4242
path: ~/.sonar/cache
4343
key: ${{ runner.os }}-sonar
4444
restore-keys: ${{ runner.os }}-sonar
4545
- name: Cache Maven packages
46-
uses: actions/cache@v2.1.6
46+
uses: actions/cache@v3
4747
with:
4848
path: ~/.m2
4949
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)