From 19008cfba2d3b933f29012f743aa525198fe64ba Mon Sep 17 00:00:00 2001 From: wallentx Date: Wed, 24 Jun 2026 15:26:07 -0500 Subject: [PATCH 1/2] chore: update outdated github actions --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8bd037d..2730e67 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,20 +20,20 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22 cache: npm - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Install dependencies run: npm ci - name: Build with Docusaurus run: npm run build - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: ./build @@ -46,4 +46,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 From 3183f174159cff586d7c6175bc90a025df07d218 Mon Sep 17 00:00:00 2001 From: William Allen Date: Wed, 24 Jun 2026 16:23:03 -0500 Subject: [PATCH 2/2] Allow hidden files in artifact upload for deployment Enable uploading hidden files during artifact upload. --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2730e67..80e53ef 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,6 +36,7 @@ jobs: uses: actions/upload-pages-artifact@v5 with: path: ./build + include-hidden-files: true deploy: environment: