Skip to content

Commit

Permalink
fixing github action cache version issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ulysses-cognizant committed Feb 11, 2025
1 parent bb16991 commit 7d1b145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4.0.2
- name: Cache Node.js modules # Add cache step
uses: actions/cache@v3 # Update to v3 of actions/cache
uses: actions/cache@v4.0.2 # Update to v4.0.2 of actions/cache
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit 7d1b145

Please sign in to comment.