Skip to content

Commit 9588e3b

Browse files
committed
use node 18 in actions
1 parent d26eab1 commit 9588e3b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Setup
2-
description: "Set up the node environment"
2+
description: 'Set up the node environment'
33
runs:
44
using: composite
55
steps:
66
- uses: actions/setup-node@v4
77
with:
8-
node-version: lts/*
8+
node-version: 18
99
- name: Get yarn cache directory path
1010
shell: bash
1111
id: yarn-cache-dir-path

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: lts/*
23-
- uses: "./.github/setup"
22+
node-version: 18
23+
- uses: './.github/setup'
2424
- name: install dependencies
2525
run: yarn install
2626
- name: Creating .npmrc
@@ -35,8 +35,8 @@ jobs:
3535
with:
3636
publish: yarn run release
3737
version: yarn run version
38-
commit: "chore: new release"
39-
title: "chore: new release candidate"
38+
commit: 'chore: new release'
39+
title: 'chore: new release candidate'
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4242
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} #if using NPM packages

0 commit comments

Comments
 (0)