From 1f8b633788252380cc866ae1ff42bd8693d2ce1a Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Fri, 23 May 2025 15:48:55 -0700 Subject: [PATCH 1/2] build: deploy: Move to ubuntu 24.04 runner The deploy action is failing due to the following error: "This is a scheduled Ubuntu 20.04 retirement. Ubuntu 20.04 LTS runner will be removed on 2025-04-15. For more details, see https://github.com/actions/runner-images/issues/11101" Signed-off-by: Bo Chen --- .github/workflows/deploy-github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-github.yml b/.github/workflows/deploy-github.yml index a4e9c2b7..c8d9cf6a 100644 --- a/.github/workflows/deploy-github.yml +++ b/.github/workflows/deploy-github.yml @@ -7,7 +7,7 @@ on: jobs: deploy: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 From b2bbfaa6267d7a5f9e1c18ce60a1823d5e2592aa Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Fri, 23 May 2025 15:54:06 -0700 Subject: [PATCH 2/2] build: deploy: Upgrade "set-node" action to v4 Signed-off-by: Bo Chen --- .github/workflows/deploy-github.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-github.yml b/.github/workflows/deploy-github.yml index c8d9cf6a..aca2b21c 100644 --- a/.github/workflows/deploy-github.yml +++ b/.github/workflows/deploy-github.yml @@ -9,10 +9,10 @@ jobs: deploy: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: Install dependencies