From 64976cf68f22fc3c02c21087ed1c9d8a9e4f0e84 Mon Sep 17 00:00:00 2001 From: Aimili Date: Wed, 26 Aug 2026 21:05:22 +0800 Subject: [PATCH] Update mirror workflow to Node.js 24 actions --- .github/workflows/update-vpngate-mirror.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-vpngate-mirror.yml b/.github/workflows/update-vpngate-mirror.yml index cf93d71..02a8a74 100644 --- a/.github/workflows/update-vpngate-mirror.yml +++ b/.github/workflows/update-vpngate-mirror.yml @@ -27,16 +27,16 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-python@v7 with: python-version: "3.11" - name: Fetch and validate VPNGate snapshot run: python scripts/build_vpngate_mirror.py --output-dir _site - - uses: actions/configure-pages@v5 - - uses: actions/upload-pages-artifact@v3 + - uses: actions/configure-pages@v6 + - uses: actions/upload-pages-artifact@v5 with: path: _site - name: Deploy GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5