From 75cd129b89b9e3ae12192acf1270c7e3e8d0cd17 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Fri, 8 Mar 2024 06:28:03 +0930 Subject: [PATCH 1/2] build(gh-pages): update gh-actions versions to fix failed storybook deployment [skip release] --- .github/workflows/gh-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index f57f291a..e68435cb 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -9,15 +9,15 @@ jobs: deploy: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: '18' - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} From 108485551aab25a0a6897dcde8ed1b3bf733db8b Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Fri, 8 Mar 2024 06:30:59 +0930 Subject: [PATCH 2/2] build(release): update actions in release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5bd8307e..ad65f526 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 18 - name: Install dependencies