Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

chore: Update actions/cache action to v4 #321

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
with:
path: node_modules/
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
with:
path: node_modules/
Expand All @@ -44,7 +44,7 @@ jobs:
immutable-version: "^4.0.0-rc.1"
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
with:
path: node_modules/
Expand All @@ -65,7 +65,7 @@ jobs:
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
with:
path: node_modules/
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
with:
path: website/node_modules/
Expand All @@ -105,7 +105,7 @@ jobs:
- uses: actions/download-artifact@v2
with:
name: website-build
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
with:
path: website/node_modules/
Expand Down
Loading