Skip to content

Commit 8e69d15

Browse files
Bump actions/cache from 2 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2c69522 commit 8e69d15

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)