Skip to content

Commit

Permalink
fix: workflows node version
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Nov 8, 2024
1 parent 294327b commit bdc72a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Use Node.js
uses: actions/setup-node@latest
uses: actions/setup-node@v4
with:
node-version: lts/*

Expand All @@ -43,7 +43,7 @@ jobs:
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Use Node.js
uses: actions/setup-node@latest
uses: actions/setup-node@v4
with:
node-version: lts/*

Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Use Node.js
uses: actions/setup-node@latest
uses: actions/setup-node@v4
with:
node-version: lts/*
registry-url: https://registry.npmjs.org
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Use Node.js
uses: actions/setup-node@latest
uses: actions/setup-node@v4
with:
node-version: lts/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@latest
uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm ci
Expand Down

0 comments on commit bdc72a4

Please sign in to comment.