From 77d21453f1573b407c5d10ebc1e99aeaf30b5ef4 Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Wed, 2 Sep 2026 09:42:17 +1000 Subject: [PATCH] fix: Rebase checkout step to genuine action --- .gitea/workflows/actions.yaml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index e10091e..a936ca1 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -9,14 +9,15 @@ jobs: build_linux: name: Build binary (Linux) runs-on: ubuntu-latest - container: code.spamasaurus.com/djpbessems/act-runner-extended:1.0.0-cth20250815 + # container: code.spamasaurus.com/djpbessems/act-runner-extended:1.0.0-cth20250815 env: CGO_ENABLED: 0 steps: - - name: Git clone and checkout tag - run: | - git clone https://github.com/podman-container-tools/skopeo.git . - git checkout tags/$SKOPEO_VERSION + - name: Check out upstream repository code + uses: actions/checkout@v3 + with: + repository: podman-container-tools/skopeo + ref: $SKOPEO_VERSION - name: Build Linux binary run: | apt-get update && apt-get install -y go-md2man @@ -38,10 +39,11 @@ jobs: env: CGO_ENABLED: 0 steps: - - name: Git clone and checkout tag - run: | - git clone https://github.com/podman-container-tools/skopeo.git . - git checkout tags/$SKOPEO_VERSION + - name: Check out upstream repository code + uses: actions/checkout@v3 + with: + repository: podman-container-tools/skopeo + ref: $SKOPEO_VERSION - name: Build Windows binary run: | apt-get update && apt-get install -y go-md2man