From 464ce2260569d668fd71f0a84981c1fa095f771e Mon Sep 17 00:00:00 2001 From: keligrubb Date: Tue, 14 Apr 2026 22:58:38 -0400 Subject: [PATCH 1/2] Point Gitea Actions at git.keligrubb.com action mirrors. Use self-hosted mirrors for checkout, setup-node, upload-artifact, and download-artifact. Pin upload/download to v3 so artifact uploads work on runners that do not support @actions/artifact v2 (GHES-style); set download path to the workspace root for the release upload script. --- .gitea/workflows/pr.yml | 8 ++++---- .gitea/workflows/release.yml | 9 +++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 003cd5c..b18f944 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -9,10 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: https://github.com/actions/checkout@v6 + uses: https://git.keligrubb.com/actions/checkout@v6 - name: Setup Node - uses: https://github.com/actions/setup-node@v6 + uses: https://git.keligrubb.com/actions/setup-node@v6 with: node-version: "24" cache: "npm" @@ -28,10 +28,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: https://github.com/actions/checkout@v6 + uses: https://git.keligrubb.com/actions/checkout@v6 - name: Setup Node - uses: https://github.com/actions/setup-node@v6 + uses: https://git.keligrubb.com/actions/setup-node@v6 with: node-version: "24" cache: "npm" diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 9b1ffaa..357a0b7 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -19,10 +19,10 @@ jobs: COMFYUI_URL: http://192.168.1.124:8188 steps: - name: Checkout - uses: https://github.com/actions/checkout@v6 + uses: https://git.keligrubb.com/actions/checkout@v6 - name: Setup Node - uses: https://github.com/actions/setup-node@v6 + uses: https://git.keligrubb.com/actions/setup-node@v6 with: node-version: "24" cache: "npm" @@ -34,7 +34,7 @@ jobs: run: npm start - name: Upload PDF artifact - uses: https://github.com/actions/upload-artifact@v7 + uses: https://git.keligrubb.com/actions/upload-artifact@v3 with: name: release-pdf path: "*.pdf" @@ -47,9 +47,10 @@ jobs: GITEA_TOKEN: ${{ secrets.SCROLLSMITH_GITEA_TOKEN }} steps: - name: Download PDF artifact - uses: https://github.com/actions/download-artifact@v8 + uses: https://git.keligrubb.com/actions/download-artifact@v3 with: name: release-pdf + path: . - name: Create release and upload PDF run: | -- 2.52.0 From 9cd8cd7076b02ac995b11b01c0101649fea3c401 Mon Sep 17 00:00:00 2001 From: keligrubb Date: Tue, 14 Apr 2026 23:00:41 -0400 Subject: [PATCH 2/2] fix versions --- .gitea/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 357a0b7..5f6ddb9 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -34,7 +34,7 @@ jobs: run: npm start - name: Upload PDF artifact - uses: https://git.keligrubb.com/actions/upload-artifact@v3 + uses: https://git.keligrubb.com/actions/upload-artifact@v7 with: name: release-pdf path: "*.pdf" @@ -47,10 +47,9 @@ jobs: GITEA_TOKEN: ${{ secrets.SCROLLSMITH_GITEA_TOKEN }} steps: - name: Download PDF artifact - uses: https://git.keligrubb.com/actions/download-artifact@v3 + uses: https://git.keligrubb.com/actions/download-artifact@v8 with: name: release-pdf - path: . - name: Create release and upload PDF run: | -- 2.52.0