From 00e68d85aa0db277b04d58c7da2f6b52d34d9e9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Nov 2021 05:06:20 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 2.1.7 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](https://github.com/actions/cache/compare/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] --- .github/workflows/continuous-integration.yml | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 552c4177f..a35c8c644 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -46,7 +46,7 @@ jobs: java-version: ${{ env.JAVA_VERSION }} - name: Cache maven dependencies id: cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -88,12 +88,12 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Cache web dependencies id: web-cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: web/node_modules key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/yarn.lock') }} - name: Cache maven dependencies (for web) - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.OS }}-${{ env.CACHE_MAVEN_FOR_WEB_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -138,7 +138,7 @@ jobs: distribution: adopt java-version: 8 - name: Cache maven dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -172,7 +172,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Cache web dependencies id: web-cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: web/node_modules key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/yarn.lock') }} @@ -184,7 +184,7 @@ jobs: run: yarn ci - name: Cache maven dependencies id: maven-cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -265,7 +265,7 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache maven dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -307,7 +307,7 @@ jobs: distribution: adopt java-version: 8 - name: Cache maven dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -351,7 +351,7 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache maven dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -410,7 +410,7 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache maven dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -468,13 +468,13 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache SonarCloud packages - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.sonar/cache key: ${{ runner.os }}-${{ env.CACHE_SONAR_NAME }} restore-keys: ${{ runner.os }}-${{ env.CACHE_SONAR_NAME }} - name: Cache maven dependencies - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.7 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}