Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v4 (#521)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 31, 2024
1 parent 8ffeba5 commit ab8240f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# Npm cache
- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand All @@ -45,7 +45,7 @@ jobs:
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: node-modules
with:
path: node_modules
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

# Npm cache
- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand All @@ -88,7 +88,7 @@ jobs:
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: node-modules
with:
path: node_modules
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

# Npm cache
- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand All @@ -131,7 +131,7 @@ jobs:
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: node-modules
with:
path: node_modules
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:

# Npm cache
- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand All @@ -199,7 +199,7 @@ jobs:
path: opencollective-api

- name: Restore node_modules (api)
uses: actions/cache@v3
uses: actions/cache@v4
id: api-node-modules
with:
path: opencollective-api/node_modules
Expand All @@ -217,7 +217,7 @@ jobs:

# Prepare Rest
- name: Restore node_modules (rest)
uses: actions/cache@v3
uses: actions/cache@v4
id: rest-node-modules
with:
path: node_modules
Expand Down

0 comments on commit ab8240f

Please sign in to comment.