Skip to content

Commit ae559f5

Browse files
Bump actions/cache from 2.1.6 to 2.1.7 (#110)
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v2.1.6...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bfc7e28 commit ae559f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
uses: joschi/setup-jdk@v2.4.0
1919
with:
2020
java-version: ${{ matrix.java_version }}
21-
- uses: actions/cache@v2.1.6
21+
- uses: actions/cache@v2.1.7
2222
if: runner.os != 'Windows'
2323
with:
2424
path: ~/.m2
2525
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2626
restore-keys: |
2727
${{ runner.os }}-maven-
28-
- uses: actions/cache@v2.1.6
28+
- uses: actions/cache@v2.1.7
2929
if: runner.os == 'Windows'
3030
with:
3131
path: ~/.m2
@@ -36,7 +36,7 @@ jobs:
3636
if: ${{ env.SONAR_TOKEN != null && env.SONAR_TOKEN != '' && matrix.java_version == '11' }}
3737
env:
3838
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
39-
uses: actions/cache@v2.1.6
39+
uses: actions/cache@v2.1.7
4040
with:
4141
path: ~/.sonar/cache
4242
key: ${{ runner.os }}-sonar

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
server-password: CI_DEPLOY_PASSWORD
2020
gpg-passphrase: GPG_PASSPHRASE
2121
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
22-
- uses: actions/cache@v2.1.6
22+
- uses: actions/cache@v2.1.7
2323
with:
2424
path: ~/.m2/repository
2525
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)