Skip to content

Commit

Permalink
chore: use node LTS version for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rix0rrr committed Jul 24, 2024
1 parent b7bf97a commit 881607e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
with:
distribution: 'zulu'
java-version: '8'
- name: Set up Node 18
- name: Set up Node LTS
uses: actions/setup-node@v4
with:
cache: yarn
node-version: '18'
node-version: 'lts/*'
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -125,11 +125,11 @@ jobs:
with:
distribution: 'zulu'
java-version: '8'
- name: Set up Node 18
- name: Set up Node LTS
uses: actions/setup-node@v4
with:
cache: yarn
node-version: '18'
node-version: 'lts/*'
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -400,7 +400,7 @@ jobs:
uses: actions/setup-node@v4
with:
cache: yarn
node-version: '18'
node-version: 'lts/*'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Benchmark
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yarn-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-node@v4
with:
cache: yarn
node-version: 18
node-version: 'lts/*'

- name: Install Tools
run: |-
Expand Down

0 comments on commit 881607e

Please sign in to comment.