fix: replace actions/checkout with native git clone to remove GitHub dependency
All checks were successful
EcoArk Wheel Pipeline CI / validate (push) Successful in 1s

The workflow previously used actions/checkout@v4 which fetches from GitHub.
Gitea runner cannot access GitHub due to timeout. Replace with inline
git init + fetch using GITHUB_SERVER_URL / GITHUB_REPOSITORY env vars
provided by Gitea Actions runtime.
This commit is contained in:
root
2026-05-13 12:00:48 +08:00
parent ea6a53bdc7
commit cdc816467d

View File

@ -17,7 +17,11 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 run: |
git init
git remote add origin "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git"
git fetch --depth 1 origin "${GITHUB_SHA}"
git checkout "${GITHUB_SHA}"
- name: Show environment info - name: Show environment info
run: | run: |