From cbbcb15b0433b088e030302ebc92ddf03a249726 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Nov 2020 07:03:07 +0000 Subject: [PATCH] build(deps): bump actions/cache from v2.1.2 to v2.1.3 Bumps [actions/cache](https://github.com/actions/cache) from v2.1.2 to v2.1.3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.2...0781355a23dac32fd3bac414512f4b903437991a) Signed-off-by: dependabot[bot] --- .github/workflows/maven.yml | 4 ++-- .github/workflows/pr.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2fbfae808..046b21a13 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -33,14 +33,14 @@ jobs: server-id: sonatype-nexus-snapshots server-username: OSS_USERNAME server-password: OSS_PASSWORD - - uses: actions/cache@v2.1.2 + - uses: actions/cache@v2.1.3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Cache SonarCloud packages - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.3 if: matrix.java_version == '11' with: path: ~/.sonar/cache diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0bbe28a30..a91618337 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -26,14 +26,14 @@ jobs: uses: actions/setup-java@v1 with: java-version: ${{ matrix.java_version }} - - uses: actions/cache@v2.1.2 + - uses: actions/cache@v2.1.3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Cache SonarCloud packages - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.3 if: matrix.java_version == '11' with: path: ~/.sonar/cache diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ac06cd4e..44bdf8a8d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: server-username: OSS_USERNAME server-password: OSS_PASSWORD gpg-passphrase: GPG_PASSPHRASE - - uses: actions/cache@v2.1.2 + - uses: actions/cache@v2.1.3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}