Skip to content

Commit 778f56a

Browse files
committed
Revert "upgrade nodejs to version 18 (#58)"
This reverts commit a25a152.
1 parent a25a152 commit 778f56a

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.github/actions/build-package/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ runs:
2727
with:
2828
repository: cloudscape-design/${{ inputs.package }}
2929
path: ${{ inputs.package }}
30-
- name: Use Node.js 18
30+
- name: Use Node.js 16
3131
uses: actions/setup-node@v3
3232
with:
33-
node-version: 18
33+
node-version: 16
3434

3535
- name: Download artifacts
3636
if: ${{ inputs.download_dependencies == 'true' }}

.github/actions/patch-local-dependencies/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ inputs:
1111
runs:
1212
using: "composite"
1313
steps:
14-
- name: Use Node.js 18
14+
- name: Use Node.js 16
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: 18
17+
node-version: 16
1818
- run: INPUT_PATH=${{ inputs.path }} INPUT_TYPE=${{ inputs.type }} node ${{ github.action_path }}/local.mjs
1919
shell: bash

.github/actions/release-package/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ inputs:
99
runs:
1010
using: "composite"
1111
steps:
12-
- name: Use Node.js 18
12+
- name: Use Node.js 16
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version: 16
1616

1717
- name: Define new version suffix
1818
id: vars

.github/actions/unlock-dependencies/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: "Removes all @cloudscape-design dependencies from package-lock file
44
runs:
55
using: "composite"
66
steps:
7-
- name: Use Node.js 18
7+
- name: Use Node.js 16
88
uses: actions/setup-node@v3
99
with:
10-
node-version: 18
10+
node-version: 16
1111
- run: node ${{ github.action_path }}/index.js
1212
shell: bash

.github/workflows/build-lint-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ on:
55
inputs:
66
skip-codeql:
77
type: boolean
8-
description: "Skip CodeQL checks"
8+
description: 'Skip CodeQL checks'
99
required: false
1010
default: false
1111
skip-codecov:
1212
type: boolean
13-
description: "Skip code coverage step"
13+
description: 'Skip code coverage step'
1414
required: false
1515
default: false
1616
artifact-path:
1717
type: string
18-
description: "An optional file, directory or wildcard pattern that describes what to upload"
18+
description: 'An optional file, directory or wildcard pattern that describes what to upload'
1919
artifact-name:
2020
type: string
21-
description: "An optional artifact name"
22-
default: "artifact"
21+
description: 'An optional artifact name'
22+
default: 'artifact'
2323

2424
permissions:
2525
actions: read
@@ -31,10 +31,10 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v3
34-
- name: Use Node.js 18
34+
- name: Use Node.js 16
3535
uses: actions/setup-node@v3
3636
with:
37-
node-version: 18
37+
node-version: 16
3838
- name: Unlock dependencies
3939
uses: cloudscape-design/.github/.github/actions/unlock-dependencies@main
4040
- run: npm i --force

.github/workflows/dry-run.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ jobs:
129129
needs:
130130
- buildComponents
131131
steps:
132-
- name: Use Node.js 18
132+
- name: Use Node.js 16
133133
uses: actions/setup-node@v3
134134
with:
135-
node-version: 18
135+
node-version: 16
136136
- name: Download component artifacts
137137
uses: actions/download-artifact@v3
138138
with:
@@ -148,10 +148,10 @@ jobs:
148148
needs:
149149
- buildComponents
150150
steps:
151-
- name: Use Node.js 18
151+
- name: Use Node.js 16
152152
uses: actions/setup-node@v3
153153
with:
154-
node-version: 18
154+
node-version: 16
155155
- name: Download component artifacts
156156
uses: actions/download-artifact@v3
157157
with:
@@ -170,10 +170,10 @@ jobs:
170170
needs:
171171
- buildComponents
172172
steps:
173-
- name: Use Node.js 18
173+
- name: Use Node.js 16
174174
uses: actions/setup-node@v3
175175
with:
176-
node-version: 18
176+
node-version: 16
177177
- name: Download component artifacts
178178
uses: actions/download-artifact@v3
179179
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v3
28-
- name: Use Node.js 18
28+
- name: Use Node.js 16
2929
uses: actions/setup-node@v3
3030
with:
31-
node-version: 18
31+
node-version: 16
3232

3333
- run: npm install --force
3434

0 commit comments

Comments
 (0)