From 7034ed9fce6541f9195a5ecf9ef11ca1aec0f9d2 Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Wed, 2 Sep 2026 11:37:03 +1000 Subject: [PATCH] build: Add go build environment --- .gitea/workflows/actions.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index b756c07..40a9b9a 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -9,7 +9,6 @@ jobs: build_linux: name: Build binary (Linux) runs-on: ubuntu-latest - # container: code.spamasaurus.com/djpbessems/act-runner-extended:1.0.0-cth20250815 env: CGO_ENABLED: 0 steps: @@ -20,6 +19,10 @@ jobs: repository: podman-container-tools/skopeo ref: ${{ env.SKOPEO_VERSION }} token: ${{ secrets.GH_TOKEN }} + - name: Set up build environment + uses: actions/setup-go@v4 + with: + go-version: '1.23' - name: Build Linux binary run: | apt-get update && apt-get install -y go-md2man @@ -37,8 +40,6 @@ jobs: build_windows: name: Build binary (Windows) runs-on: ubuntu-latest - container: - image: code.spamasaurus.com/djpbessems/act-runner-extended:1.0.0-cth20250815 env: CGO_ENABLED: 0 steps: @@ -49,6 +50,10 @@ jobs: repository: podman-container-tools/skopeo ref: ${{ env.SKOPEO_VERSION }} token: ${{ secrets.GH_TOKEN }} + - name: Set up build environment + uses: actions/setup-go@v4 + with: + go-version: '1.23' - name: Build Windows binary run: | apt-get update && apt-get install -y go-md2man