From 6a75d577bb5f4b916f74fbe246aebda743fe500c Mon Sep 17 00:00:00 2001 From: Okapi1023 Date: Sun, 5 Jul 2026 15:18:32 +0100 Subject: [PATCH 1/2] Upgrade GitHub Actions to support Node 24 runtime Updated GitHub Actions to use latest versions for Node 24 support. --- .github/workflows/static.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 6a1f6a1c8..c8fbd63a1 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -30,14 +30,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Updated from v4 to support Node 24 runtime natively - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 # Updated from v5 to support Node 24 runtime natively - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 # Updated from v3 to support Node 24 runtime natively with: # Upload entire repository path: './website' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v5 + uses: actions/deploy-pages@v5 # Retained v5 (which supports Node 24) and resolved the trailing typo From 30ec84cadd491df0fcc93423f529299cfa94d4af Mon Sep 17 00:00:00 2001 From: Okapi1023 Date: Mon, 6 Jul 2026 16:26:20 +0100 Subject: [PATCH 2/2] Upgrade GitHub Actions versions in workflow Updated GitHub Actions to v6 and retained v5 for deployment. --- .github/workflows/static.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index c8fbd63a1..adb190c40 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -30,14 +30,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 # Updated from v4 to support Node 24 runtime natively + uses: actions/checkout@v6 - name: Setup Pages - uses: actions/configure-pages@v6 # Updated from v5 to support Node 24 runtime natively + uses: actions/configure-pages@v6 - name: Upload artifact - uses: actions/upload-pages-artifact@v5 # Updated from v3 to support Node 24 runtime natively + uses: actions/upload-pages-artifact@v5 with: # Upload entire repository path: './website' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v5 # Retained v5 (which supports Node 24) and resolved the trailing typo + uses: actions/deploy-pages@v5