Skip to content

Commit

Permalink
build(deps): bump actions/cache from 2 to 3 (#2605)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v2...v3)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Mar 22, 2022
1 parent e510135 commit b274256
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cspell-cli.yml
Expand Up @@ -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: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Expand Up @@ -97,15 +97,15 @@ 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: |
integration-tests/tsconfig.json
- 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: |
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -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: |
Expand Down

0 comments on commit b274256

Please sign in to comment.