Skip to content

Commit

Permalink
Bump actions/cache to v4 (#1975)
Browse files Browse the repository at this point in the history
bump actions/cache to v4
  • Loading branch information
david-crespo authored Feb 23, 2024
1 parent bbf019e commit 6de56b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lintBuildTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
node-version: 20
cache: 'npm'
- name: Cache node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-node-modules
with:
path: node_modules
Expand All @@ -35,7 +35,7 @@ jobs:
node-version: 20
cache: 'npm'
- name: Get node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-node-modules
with:
path: node_modules
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
node-version: 20
cache: 'npm'
- name: Get node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: modules-${{ hashFiles('package-lock.json') }}
Expand All @@ -74,7 +74,7 @@ jobs:
echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV
# Cache browser binaries, cache key is based on Playwright version and OS
- name: Cache Playwright browser binaries
uses: actions/cache@v3
uses: actions/cache@v4
id: playwright-cache
with:
path: '~/.cache/ms-playwright'
Expand Down

0 comments on commit 6de56b1

Please sign in to comment.