From 8a743118787f4a7d5b48b48b990884cb6a07a00a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 16 Jul 2025 14:01:11 +0000 Subject: [PATCH 1/2] Initial plan From 99384f5ed35c8c5a92407ddf4c1f668bc0264369 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 16 Jul 2025 14:04:54 +0000 Subject: [PATCH 2/2] Renovate cf-pages.yml GitHub Action workflow to modern standards Co-authored-by: reorx <405972+reorx@users.noreply.github.com> --- .github/workflows/cf-pages.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cf-pages.yml b/.github/workflows/cf-pages.yml index 10cacec..c128805 100644 --- a/.github/workflows/cf-pages.yml +++ b/.github/workflows/cf-pages.yml @@ -10,20 +10,24 @@ on: jobs: deploy: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v3 + - name: Checkout code + uses: actions/checkout@v4 with: fetch-depth: 1 - - uses: actions/setup-node@v3 + - name: Set up Node.js + uses: actions/setup-node@v4 with: - node-version: 16 + node-version: '18' cache: 'npm' - - run: npm install - - run: npm run build-site + - name: Install dependencies + run: npm install + - name: Build site + run: npm run build-site - name: Publish uses: cloudflare/pages-action@v1