Skip to content

Commit

Permalink
fix workflow github
Browse files Browse the repository at this point in the history
  • Loading branch information
massimocandela committed Dec 26, 2024
1 parent ecadf58 commit 99a4110
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
steps:

- name: Set up Javascript/Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 18.19.0

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Cache multiple paths
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -36,7 +36,7 @@ jobs:
npm run compile
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: logs
Expand All @@ -49,17 +49,17 @@ jobs:
steps:

- name: Set up Javascript/Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 18.19.0

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Cache multiple paths
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -75,7 +75,7 @@ jobs:
npm run test
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs
Expand Down

0 comments on commit 99a4110

Please sign in to comment.