fix(ci): update Go to 1.24 for ai-compliance-sdk
All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-ai-compliance (push) Successful in 43s
CI / test-python-backend-compliance (push) Successful in 30s
CI / test-python-document-crawler (push) Successful in 26s
CI / test-python-dsms-gateway (push) Successful in 19s

The ai-compliance-sdk go.mod requires go >= 1.24.0 but CI was using
golang:1.23-alpine. Updated both Gitea Actions and Woodpecker pipelines.
Also updated golangci-lint to v1.62 for Go 1.24 compatibility.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Boenisch
2026-02-15 17:43:27 +01:00
parent 0d37be807a
commit 2d909a8f8e
2 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ jobs:
go-lint:
runs-on: docker
if: github.event_name == 'pull_request'
container: golangci/golangci-lint:v1.55-alpine
container: golangci/golangci-lint:v1.62-alpine
steps:
- name: Checkout
run: |
@@ -80,7 +80,7 @@ jobs:
test-go-ai-compliance:
runs-on: docker
container: golang:1.23-alpine
container: golang:1.24-alpine
env:
CGO_ENABLED: "0"
steps: