From 757a095c101fbd1a6c275fa9d3e9a0926f211d5b Mon Sep 17 00:00:00 2001 From: mika kuns Date: Fri, 24 Apr 2026 19:50:22 +0200 Subject: [PATCH] fix(ci): use full GitHub URL for actions/checkout Gitea Actions resolves bare action names against the local Gitea instance by default. Using the full github.com URL makes the runner pull the action from upstream. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitea/workflows/ci.yml | 2 +- .gitea/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8c91ff2..d4b9be9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: DOTNET_ROOT: /home/mika/.dotnet steps: - name: Checkout - uses: actions/checkout@v4 + uses: https://github.com/actions/checkout@v4 with: fetch-depth: 0 diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 507783d..d0c3860 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -14,7 +14,7 @@ jobs: REPO: releases/ClaudeMailbox steps: - name: Checkout tag - uses: actions/checkout@v4 + uses: https://github.com/actions/checkout@v4 with: fetch-depth: 0