From 5795a0efb77e90d5bffda4817e4bbdb2d7267574 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 05:07:03 +0000 Subject: [PATCH] Bump actions/cache from 2.1.7 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/continuous-integration.yml | 26 ++++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 44bdcdf3d..095d187e7 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.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -88,13 +88,13 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Cache web dependencies id: web-cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: web/node_modules key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/yarn.lock') }} - name: Cache maven dependencies (for web) id: maven-cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.OS }}-${{ env.CACHE_MAVEN_FOR_WEB_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -138,7 +138,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Cache web dependencies id: web-cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: web/node_modules key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/yarn.lock') }} @@ -150,7 +150,7 @@ jobs: run: yarn ci - name: Cache maven dependencies (for web) id: maven-cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.OS }}-${{ env.CACHE_MAVEN_FOR_WEB_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -185,7 +185,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Cache web dependencies id: web-cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: web/node_modules key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/yarn.lock') }} @@ -197,7 +197,7 @@ jobs: run: yarn ci - name: Cache maven dependencies id: maven-cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -275,7 +275,7 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache maven dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -317,7 +317,7 @@ jobs: distribution: adopt java-version: 8 - name: Cache maven dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -361,7 +361,7 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache maven dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -420,7 +420,7 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache maven dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }} @@ -478,13 +478,13 @@ jobs: distribution: adopt java-version: ${{ env.JAVA_VERSION }} - name: Cache SonarCloud packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 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.7 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}