Skip to content

Commit

Permalink
fix(github): fix github action
Browse files Browse the repository at this point in the history
update actions versions
  • Loading branch information
manudss committed Feb 23, 2024
1 parent 49c8b6a commit 1d5f8fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
- name: Preserve line endings
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v1
- uses: actions/cache@v2
uses: actions/checkout@v3
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
Expand All @@ -32,13 +32,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- uses: actions/cache@v2
uses: actions/checkout@v3
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
Expand Down

0 comments on commit 1d5f8fa

Please sign in to comment.