From 574bc434b9e682f1d887814f64361e0298ecc571 Mon Sep 17 00:00:00 2001 From: "David Richards, Jr." Date: Thu, 19 Sep 2024 16:23:20 -0400 Subject: [PATCH] fix(CI): update node versions --- .github/workflows/docs.yml | 6 +++--- .github/workflows/quality.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ee1cbf9ba..92ddaef86 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -3,7 +3,7 @@ name: Release Storybook on: workflow_call: -jobs: +jobs: build-storybook: name: Build Storybook runs-on: ubuntu-latest @@ -12,7 +12,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: 16.17.x + node-version: 18.20.x - name: Build run: | yarn install @@ -21,4 +21,4 @@ jobs: uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GH_TOKEN }} - publish_dir: ./packages/apps/lightning-ui-docs/storybook-static \ No newline at end of file + publish_dir: ./packages/apps/lightning-ui-docs/storybook-static diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index e582518a7..013042cb7 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -11,7 +11,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: 16.17.x + node-version: 18.20.x cache: 'yarn' - name: Run tests run: | @@ -25,7 +25,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: 16.17.x + node-version: 18.20.x cache: 'yarn' - name: Test build run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c92ca056f..2a4a332b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: 16.17.x + node-version: 18.20.0 cache: 'yarn' - name: Install Dependencies run: yarn install