From 28e7e60b9d2abcf0d4eb6168df08f7824233402e Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sat, 22 Aug 2026 00:47:10 -0700 Subject: [PATCH] fix(ci): use git clone instead of Node.js actions/checkout --- .gitea/workflows/ci.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index cd39385..587cca4 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -11,7 +11,13 @@ jobs: container: image: alpine:latest steps: - - uses: actions/checkout@v4 + - name: Checkout code + run: | + apk add --no-cache git + git init + git remote add origin https://forgejo.riotpiao.com/rock/poimen-memory.git + git fetch origin ${{ github.ref_name }} --depth=1 + git checkout FETCH_HEAD - name: Check markdown files exist run: |