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') }}