From 449b4d4897c7232bcb13dd359e34c44d5cd773d3 Mon Sep 17 00:00:00 2001 From: Hilton Shumway Date: Tue, 10 Mar 2026 22:21:28 +0000 Subject: [PATCH 1/4] Use actions/checkout@v6 v4 is now deprecated --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b4fe37937..9af0b8ef6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Node Setup uses: ./.github/actions/node-setup - name: Linting Application @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Node Setup uses: ./.github/actions/node-setup - name: Building Application @@ -61,7 +61,7 @@ jobs: needs: build steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Download artifacts uses: actions/download-artifact@v5 with: From 8a0d247e8cb6c434f55e78f8961a72cebb30befe Mon Sep 17 00:00:00 2001 From: Hilton Shumway Date: Tue, 10 Mar 2026 22:22:36 +0000 Subject: [PATCH 2/4] Use actions/cache@v5 --- .github/actions/node-setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/node-setup/action.yml b/.github/actions/node-setup/action.yml index 887ea5cc2..831995ae6 100644 --- a/.github/actions/node-setup/action.yml +++ b/.github/actions/node-setup/action.yml @@ -6,7 +6,7 @@ runs: steps: - name: Cache node modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: node-modules with: From 6d2ef02a7b96011c235bea2f5e143369425c4317 Mon Sep 17 00:00:00 2001 From: Hilton Shumway Date: Tue, 10 Mar 2026 22:26:07 +0000 Subject: [PATCH 3/4] Update setup-node --- .github/actions/node-setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/node-setup/action.yml b/.github/actions/node-setup/action.yml index 831995ae6..e6886ff3d 100644 --- a/.github/actions/node-setup/action.yml +++ b/.github/actions/node-setup/action.yml @@ -19,7 +19,7 @@ runs: shell: bash run: echo "NODE_VERSION=$(jq -r '.engines.node' package.json)" >> $GITHUB_ENV - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ env.NODE_VERSION }} - name: Get npm version From 6102e3907c3b4fdcff1565ab43d6f5dd5478de35 Mon Sep 17 00:00:00 2001 From: Hilton Shumway Date: Tue, 10 Mar 2026 22:27:17 +0000 Subject: [PATCH 4/4] Use upload-artifact@v6 --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9af0b8ef6..5d5bf32eb 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -47,7 +47,7 @@ jobs: env: GH_TOKEN: '${{ secrets.GITHUB_TOKEN }}' - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build path: |