diff --git a/actions/build-package/action.yml b/actions/build-package/action.yml index d6ff9a6..2700e40 100644 --- a/actions/build-package/action.yml +++ b/actions/build-package/action.yml @@ -27,10 +27,10 @@ runs: with: repository: cloudscape-design/${{ inputs.package }} path: ${{ inputs.package }} - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Download artifacts if: ${{ inputs.download_dependencies == 'true' }} diff --git a/actions/patch-local-dependencies/action.yml b/actions/patch-local-dependencies/action.yml index 3cd433b..7d23074 100644 --- a/actions/patch-local-dependencies/action.yml +++ b/actions/patch-local-dependencies/action.yml @@ -11,9 +11,9 @@ inputs: runs: using: "composite" steps: - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - run: INPUT_PATH=${{ inputs.path }} INPUT_TYPE=${{ inputs.type }} node ${{ github.action_path }}/local.mjs shell: bash diff --git a/actions/release-package/action.yml b/actions/release-package/action.yml index 6955f3c..7b83adc 100644 --- a/actions/release-package/action.yml +++ b/actions/release-package/action.yml @@ -9,10 +9,10 @@ inputs: runs: using: "composite" steps: - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Define new version suffix id: vars diff --git a/actions/unlock-dependencies/action.yml b/actions/unlock-dependencies/action.yml index d501ec2..f5a9c43 100644 --- a/actions/unlock-dependencies/action.yml +++ b/actions/unlock-dependencies/action.yml @@ -4,9 +4,9 @@ description: "Removes all @cloudscape-design dependencies from package-lock file runs: using: "composite" steps: - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - run: node ${{ github.action_path }}/index.js shell: bash diff --git a/workflows/build-lint-test.yml b/workflows/build-lint-test.yml index ab8629b..dfd8b0e 100644 --- a/workflows/build-lint-test.yml +++ b/workflows/build-lint-test.yml @@ -5,21 +5,21 @@ on: inputs: skip-codeql: type: boolean - description: 'Skip CodeQL checks' + description: "Skip CodeQL checks" required: false default: false skip-codecov: type: boolean - description: 'Skip code coverage step' + description: "Skip code coverage step" required: false default: false artifact-path: type: string - description: 'An optional file, directory or wildcard pattern that describes what to upload' + description: "An optional file, directory or wildcard pattern that describes what to upload" artifact-name: type: string - description: 'An optional artifact name' - default: 'artifact' + description: "An optional artifact name" + default: "artifact" permissions: actions: read @@ -31,10 +31,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Unlock dependencies uses: cloudscape-design/.github/.github/actions/unlock-dependencies@main - run: npm i --force diff --git a/workflows/dry-run.yml b/workflows/dry-run.yml index 85de4d0..84e3e21 100644 --- a/workflows/dry-run.yml +++ b/workflows/dry-run.yml @@ -129,10 +129,10 @@ jobs: needs: - buildComponents steps: - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Download component artifacts uses: actions/download-artifact@v3 with: @@ -148,10 +148,10 @@ jobs: needs: - buildComponents steps: - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Download component artifacts uses: actions/download-artifact@v3 with: @@ -170,10 +170,10 @@ jobs: needs: - buildComponents steps: - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Download component artifacts uses: actions/download-artifact@v3 with: diff --git a/workflows/release.yml b/workflows/release.yml index ab72544..7e49147 100644 --- a/workflows/release.yml +++ b/workflows/release.yml @@ -25,10 +25,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - run: npm install --force