fix(ci): use git clone instead of Node.js actions/checkout
ci / test (push) Failing after 34s

This commit is contained in:
Story Crater Bot
2026-08-22 00:47:11 -07:00
parent b863a92ade
commit 69c717a851
+6 -4
View File
@@ -15,10 +15,12 @@ jobs:
GOFLAGS: -mod=readonly
GITHUB_TOKEN: ${{ secrets.REGISTRY_PAT }}
steps:
- name: install node (required by JS-based actions)
run: apk add --no-cache nodejs git
- uses: actions/checkout@v4
- name: Checkout code
run: |
git init
git remote add origin https://forgejo.riotpiao.com/rock/poimen-workflows.git
git fetch origin ${{ github.ref_name }} --depth=1
git checkout FETCH_HEAD
- name: Download dependencies
run: go mod download