From c0d5b498ea3462dc9f6d2e7159c620a84bbc170c Mon Sep 17 00:00:00 2001 From: Derek Slenk Date: Thu, 17 Jul 2025 14:33:58 -0400 Subject: [PATCH] Fix Forgejo Actions to use GitHub action references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forgejo Actions doesn't have all GitHub Actions in its data repository, so we need to reference the full GitHub URLs for actions like peaceiris/actions-hugo and aws-actions/configure-aws-credentials. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .forgejo/workflows/build.yml | 6 +++--- .forgejo/workflows/deploy.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 6079e2d..4d1543d 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -11,13 +11,13 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: https://github.com/actions/checkout@v4 with: submodules: recursive fetch-depth: 0 - name: Setup Hugo - uses: peaceiris/actions-hugo@v3 + uses: https://github.com/peaceiris/actions-hugo@v3 with: hugo-version: 'latest' extended: true @@ -26,7 +26,7 @@ jobs: run: hugo --minify - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: https://github.com/actions/upload-artifact@v4 with: name: hugo-build path: public/ diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index bc6b9c7..87fa99e 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -11,13 +11,13 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: https://github.com/actions/checkout@v4 with: submodules: recursive fetch-depth: 0 - name: Setup Hugo - uses: peaceiris/actions-hugo@v3 + uses: https://github.com/peaceiris/actions-hugo@v3 with: hugo-version: 'latest' extended: true @@ -26,7 +26,7 @@ jobs: run: hugo --minify - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 + uses: https://github.com/aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}