From ac23e5246ff21479034360c735d6c3a1f110e151 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 23:02:48 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage.yml | 2 +- .github/workflows/cspell-cli.yml | 2 +- .github/workflows/integration-test.yml | 6 +++--- .github/workflows/test.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index b2247164577..a70e485e1b7 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -35,7 +35,7 @@ jobs: - run: npm -v - name: Restore CSpell cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: key: cspell-cache-${{ runner.os }}-coverage-${{ hashFiles('**/*.ts', '**/*.md') }} path: | diff --git a/.github/workflows/cspell-cli.yml b/.github/workflows/cspell-cli.yml index 0e3396ca3ce..6aa4c669bfb 100644 --- a/.github/workflows/cspell-cli.yml +++ b/.github/workflows/cspell-cli.yml @@ -25,7 +25,7 @@ jobs: run: npm i - name: Restore CSpell cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: key: cspell-cache-v2-${{ runner.os }}-${{ hashFiles('**/*.ts', '**/*.md') }} path: | diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index d9998f01493..bd10c8cd863 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -97,7 +97,7 @@ jobs: - name: Cache Integration Run id: step-cache-run - uses: actions/cache@v2 + uses: actions/cache@v3 with: key: int-repo-${{ steps.step-repo-info.outputs.repo-hash }}-${{ fromJSON(steps.step-repo-info.outputs.repo-info).commit }} path: | @@ -105,7 +105,7 @@ jobs: - name: Cache Build id: step-cache-build - uses: actions/cache@v2 + uses: actions/cache@v3 with: key: int-build-${{ hashFiles('**/package-lock.json', '**/src/**/*.ts', '**/tsconfig.json') }} path: | @@ -119,7 +119,7 @@ jobs: - name: Cache Integration Test Repository Files if: ${{ !steps.step-cache-run.outputs.cache-hit }} - uses: actions/cache@v2 + uses: actions/cache@v3 with: key: int-repo-temp-files-${{ matrix.repo }}-${{ fromJSON(steps.step-repo-info.outputs.repo-info).commit }} path: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 431c9185e4f..2c44951bb6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: - run: npm -v - name: Restore CSpell cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: key: cspell-cache-${{ runner.os }}-test-${{ hashFiles('**/*.ts', '**/*.md') }} path: |