From 0f6983565acbc0655be3c81c3bda43703a6ba12f Mon Sep 17 00:00:00 2001 From: Derek Slenk Date: Thu, 17 Jul 2025 14:34:36 -0400 Subject: [PATCH] Use correct action references for Forgejo Actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forgejo has actions/checkout, actions/upload-artifact, and aws-actions/configure-aws-credentials in its data repository. Only peaceiris/actions-hugo needs the full GitHub URL. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .forgejo/workflows/build.yml | 4 ++-- .forgejo/workflows/deploy.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 4d1543d..5fdfb18 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout code - uses: https://github.com/actions/checkout@v4 + uses: actions/checkout@v4 with: submodules: recursive fetch-depth: 0 @@ -26,7 +26,7 @@ jobs: run: hugo --minify - name: Upload build artifacts - uses: https://github.com/actions/upload-artifact@v4 + uses: actions/upload-artifact@v4 with: name: hugo-build path: public/ diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 87fa99e..2105288 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout code - uses: https://github.com/actions/checkout@v4 + uses: actions/checkout@v4 with: submodules: recursive fetch-depth: 0 @@ -26,7 +26,7 @@ jobs: run: hugo --minify - name: Configure AWS credentials - uses: https://github.com/aws-actions/configure-aws-credentials@v4 + uses: 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 }}