From a8190d3963ab0424baf480c7f41e7cf7b438a2d5 Mon Sep 17 00:00:00 2001 From: Dan Garfield Date: Fri, 9 May 2025 08:58:39 -0600 Subject: [PATCH 1/2] Update deploy.yml 20.04 is no longer supported Github actions, we need to update. Signed-off-by: Dan Garfield --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e4c9218..a79f9fb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,7 @@ permissions: jobs: deploy: name: Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: From 4cad1ed6cb0cf88407473848e15118f2e1b62e8b Mon Sep 17 00:00:00 2001 From: Dan Garfield Date: Fri, 9 May 2025 10:17:42 -0600 Subject: [PATCH 2/2] Update pr-check.yml Update setup-node to v4 and checkout to v4 Signed-off-by: Dan Garfield --- .github/workflows/pr-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index d2a0650..188045b 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -10,9 +10,9 @@ jobs: name: Pull Request Lint/Build runs-on: ubuntu-24.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: '14' cache: npm