Skip to content

Commit

Permalink
electorrent-workflow.yml: Update to actions/cache@v4
Browse files Browse the repository at this point in the history
Fixes #365
  • Loading branch information
reedy authored and tympanix committed Dec 12, 2024
1 parent 151ce23 commit c94c8f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/electorrent-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Cache npm modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Cache bower modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: bower.json
key: ${{ runner.os }}-${{ hashFiles('bower.json') }}
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Cache npm modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
node_modules
Expand Down

0 comments on commit c94c8f6

Please sign in to comment.