From 40e7e93ecc68e590ef1a6574e2639ec0d8918296 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 May 2021 05:19:03 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 2.1.5 to 2.1.6 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.5 to 2.1.6. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.5...v2.1.6) Signed-off-by: dependabot[bot] --- .github/workflows/angular.yml | 6 +++--- .github/workflows/cache.yml | 12 ++++++------ .github/workflows/generator.yml | 2 +- .github/workflows/incremental-changelog.yml | 6 +++--- .github/workflows/jdl.yml | 6 +++--- .github/workflows/react.yml | 6 +++--- .github/workflows/vue.yml | 6 +++--- .github/workflows/webflux.yml | 6 +++--- 8 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml index 7edce3bdf37..666ca460d13 100644 --- a/.github/workflows/angular.yml +++ b/.github/workflows/angular.yml @@ -197,7 +197,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -208,7 +208,7 @@ jobs: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}- ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }}-${{ hashFiles('generator-jhipster/**/pom.xml.ejs') }} @@ -217,7 +217,7 @@ jobs: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} - name: 'SETUP: load gradle cache' if: contains(matrix.app-type, 'gradle') - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.gradle/caches diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index a20d95676ae..06516ebb9de 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -59,7 +59,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -126,7 +126,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -134,7 +134,7 @@ jobs: key: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}-cache restore-keys: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} @@ -187,7 +187,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -195,12 +195,12 @@ jobs: key: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}-cache restore-keys: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} - name: 'SETUP: load gradle cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: | ~/.gradle/caches diff --git a/.github/workflows/generator.yml b/.github/workflows/generator.yml index 4717470d732..d91cf173fb3 100644 --- a/.github/workflows/generator.yml +++ b/.github/workflows/generator.yml @@ -42,7 +42,7 @@ jobs: with: node-version: ${{ matrix.node_version }} - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: | ~/.npm diff --git a/.github/workflows/incremental-changelog.yml b/.github/workflows/incremental-changelog.yml index 17012d52014..ac7e6d4d0a6 100644 --- a/.github/workflows/incremental-changelog.yml +++ b/.github/workflows/incremental-changelog.yml @@ -117,7 +117,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -128,7 +128,7 @@ jobs: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}- ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }}-${{ hashFiles('generator-jhipster/**/pom.xml.ejs') }} @@ -137,7 +137,7 @@ jobs: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} - name: 'SETUP: load gradle cache' if: contains(matrix.app-type, 'gradle') - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.gradle/caches diff --git a/.github/workflows/jdl.yml b/.github/workflows/jdl.yml index 8faaae14f09..12e90ebc8f7 100644 --- a/.github/workflows/jdl.yml +++ b/.github/workflows/jdl.yml @@ -108,7 +108,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -119,7 +119,7 @@ jobs: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}- ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }}-${{ hashFiles('generator-jhipster/**/pom.xml.ejs') }} @@ -128,7 +128,7 @@ jobs: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} - name: 'SETUP: load gradle cache' if: matrix.gradle == 1 - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.gradle/caches diff --git a/.github/workflows/react.yml b/.github/workflows/react.yml index 8fe56f69c2e..e2636fe379c 100644 --- a/.github/workflows/react.yml +++ b/.github/workflows/react.yml @@ -179,7 +179,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -190,7 +190,7 @@ jobs: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}- ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }}-${{ hashFiles('generator-jhipster/**/pom.xml.ejs') }} @@ -199,7 +199,7 @@ jobs: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} - name: 'SETUP: load gradle cache' if: contains(matrix.app-type, 'gradle') - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.gradle/caches diff --git a/.github/workflows/vue.yml b/.github/workflows/vue.yml index 9a52c8a4aea..a42bc5d74f2 100644 --- a/.github/workflows/vue.yml +++ b/.github/workflows/vue.yml @@ -177,7 +177,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -188,7 +188,7 @@ jobs: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}- ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }}-${{ hashFiles('generator-jhipster/**/pom.xml.ejs') }} @@ -197,7 +197,7 @@ jobs: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} - name: 'SETUP: load gradle cache' if: contains(matrix.app-type, 'gradle') - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.gradle/caches diff --git a/.github/workflows/webflux.yml b/.github/workflows/webflux.yml index d017b77b697..01d7a7259ed 100644 --- a/.github/workflows/webflux.yml +++ b/.github/workflows/webflux.yml @@ -183,7 +183,7 @@ jobs: run: | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" - name: 'SETUP: load npm cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.npm @@ -194,7 +194,7 @@ jobs: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}- ${{ runner.os }}-node-${{ steps.get-date.outputs.date }} - name: 'SETUP: load maven cache' - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }}-${{ hashFiles('generator-jhipster/**/pom.xml.ejs') }} @@ -203,7 +203,7 @@ jobs: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }} - name: 'SETUP: load gradle cache' if: contains(matrix.app-type, 'gradle') - uses: actions/cache@v2.1.5 + uses: actions/cache@v2.1.6 with: path: | ~/.gradle/caches