Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/cache from 2 to 3 #2605

Merged
merged 1 commit into from Mar 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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