Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 3 to 4 (#2196)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jan 24, 2024
1 parent b8ac64f commit e131185
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

# Separate cache for build dir, we reuse it in release publish workflow
- name: Cache build output
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: build-cache
with:
path: build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
cache: 'npm'

- name: Cache build output
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: build-cache
with:
path: build
Expand All @@ -49,7 +49,7 @@ jobs:
${{ runner.os }}-build-${{ hashFiles('package.json', 'package-lock.json', 'public', 'src/**', '*.js', '*.ts') }}
- name: Cache bigger downloads
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: cache
with:
path: ${{ github.workspace }}/.cache
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
persist-credentials: false

- name: Cache bigger downloads
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: cache
with:
path: ${{ github.workspace }}/.cache
Expand All @@ -223,7 +223,7 @@ jobs:
${{ runner.os }}-
- name: Cache build dir
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: build-cache
with:
path: build
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
cache: 'npm'

- name: Cache test-build output
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: test-build-cache
with:
path: build
Expand All @@ -24,7 +24,7 @@ jobs:
test-build-${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json', 'public', 'src/**', '*.js', '*.ts') }}
- name: Cache node_modules
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: test-npm-cache
with:
path: node_modules
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
cache: 'npm'

- name: Cache test-build output
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: test-build-cache
with:
path: build
Expand All @@ -70,7 +70,7 @@ jobs:
# We don't want to re-install dependencies for every sharded run
- name: Cache node_modules
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: test-npm-cache
with:
path: node_modules
Expand All @@ -82,7 +82,7 @@ jobs:
run: npm ci --prefer-offline --no-audit --progress=false

# Cache playwright binaries
- uses: actions/cache@v3
- uses: actions/cache@v4
id: playwright-cache
with:
path: |
Expand All @@ -93,7 +93,7 @@ jobs:
if: steps.playwright-cache.outputs.cache-hit != 'true'

- name: Cache nyc_output dir
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: nyc_output-cache
with:
path: ./.nyc_output
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
cache: 'npm'

- name: Cache nyc_output dir
uses: actions/cache@v3.3.1
uses: actions/cache@v4
id: nyc_output-cache
with:
path: ./.nyc_output
Expand Down

0 comments on commit e131185

Please sign in to comment.