From: Cameron Otsuka Date: Wed, 24 Jun 2026 17:46:36 +0000 (-0700) Subject: update actions for node.js 24 X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=d193e7af9e2e341225401588fe44ed5f7c09aa79;p=cotsuka.github.io update actions for node.js 24 --- diff --git a/.github/workflows/deploy-to-ghpages.yml b/.github/workflows/deploy-to-ghpages.yml index 4bde7b1..a04d36d 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -16,7 +16,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: oven-sh/setup-bun@v2 - name: Install dependencies run: bun install --frozen-lockfile @@ -24,7 +24,7 @@ jobs: run: bun run build - name: Build search index run: bun run index - - uses: actions/upload-pages-artifact@v4 + - uses: actions/upload-pages-artifact@v5 with: path: dist/ @@ -38,5 +38,5 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - - uses: actions/deploy-pages@v4 + - uses: actions/deploy-pages@v5 id: deployment