Skip to content

Commit 1a8f3f1

Browse files
committed
use node lts/krypton
1 parent b2c3a26 commit 1a8f3f1

7 files changed

Lines changed: 7 additions & 7 deletions

.github/workflows/create-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@main
2323
- uses: actions/setup-node@main
2424
with:
25-
node-version: "18"
25+
node-version: "lts/krypton"
2626
- name: Check and save dispatched branch
2727
id: dispatched-branch
2828
run: |

.github/workflows/deployment-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
git log --oneline -1
3434
- uses: actions/setup-node@main
3535
with:
36-
node-version: "18"
36+
node-version: "lts/krypton"
3737
- name: Install dependencies
3838
run: yarn install
3939
- name: Create jest results

.github/workflows/publish-featurefix-prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
git config user.email "${{ github.actor }}@users.noreply.github.com"
4343
- uses: actions/setup-node@main
4444
with:
45-
node-version: "18"
45+
node-version: "lts/krypton"
4646
- name: Create pre-release version number
4747
run: |
4848
preid=$(echo ${{ steps.branch-name.outputs.current_branch }} | tr '[:upper:]' '[:lower:]' | sed 's=[^[:alnum:][:space:]"]==g')

.github/workflows/publish-final-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
git config user.email "${{ github.actor }}@users.noreply.github.com"
4444
- uses: actions/setup-node@main
4545
with:
46-
node-version: "18"
46+
node-version: "lts/krypton"
4747
- name: Get version
4848
id: package-version
4949
run: echo "version=$(node -p -e "require('./package.json').version.split('-').shift()")" >> $GITHUB_OUTPUT

.github/workflows/publish-release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
git config user.email "${{ github.actor }}@users.noreply.github.com"
4040
- uses: actions/setup-node@main
4141
with:
42-
node-version: "18"
42+
node-version: "lts/krypton"
4343
- name: Create release candidate version number
4444
run: |
4545
preid="rc"

.github/workflows/push-tagged-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
ref: ${{ inputs.ref }}
3737
- uses: actions/setup-node@main
3838
with:
39-
node-version: "18"
39+
node-version: "lts/krypton"
4040
registry-url: "https://registry.npmjs.org"
4141
- name: Set name vars
4242
id: info-vars

.github/workflows/test-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Test using Node.js
2020
uses: actions/setup-node@main
2121
with:
22-
node-version: "18"
22+
node-version: "lts/krypton"
2323
- run: yarn install
2424
- run: yarn compile
2525
- run: yarn compile-scss

0 commit comments

Comments
 (0)