From b4a48a45f51b512fe9d68e68809138977b5754a6 Mon Sep 17 00:00:00 2001 From: Ronni Skansing Date: Thu, 28 May 2026 15:18:20 +0200 Subject: [PATCH] bump golang version Signed-off-by: Ronni Skansing --- .github/workflows/release.yml | 4 ++-- .github/workflows/test-build.yml | 4 ++-- makefile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00b38fc..f06914d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,7 @@ jobs: -e CGO_ENABLED=1 \ -e GOOS=linux \ -e GOARCH=amd64 \ - golang:1.25.7 \ + golang:1.25.10 \ go build -trimpath \ -ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' \ -tags production -o ../build/amd64/phishingclub main.go @@ -78,7 +78,7 @@ jobs: -e GOOS=linux \ -e GOARCH=arm64 \ -e CC=aarch64-linux-gnu-gcc \ - golang:1.25.7 \ + golang:1.25.10 \ bash -c "apt-get update && apt-get install -y gcc-aarch64-linux-gnu && go build -trimpath -ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' -tags production -o ../build/arm64/phishingclub main.go" - name: Fix build directory permissions diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 6fb20d6..9ccd50a 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -63,7 +63,7 @@ jobs: -e CGO_ENABLED=1 \ -e GOOS=linux \ -e GOARCH=amd64 \ - golang:1.25.7 \ + golang:1.25.10 \ go build -trimpath \ -ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' \ -tags production -o ../build/amd64/phishingclub main.go @@ -76,7 +76,7 @@ jobs: -e GOOS=linux \ -e GOARCH=arm64 \ -e CC=aarch64-linux-gnu-gcc \ - golang:1.25.7 \ + golang:1.25.10 \ bash -c "apt-get update && apt-get install -y gcc-aarch64-linux-gnu && go build -trimpath -ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' -tags production -o ../build/arm64/phishingclub main.go" - name: Fix build directory permissions diff --git a/makefile b/makefile index 54e9d3a..b0a6683 100644 --- a/makefile +++ b/makefile @@ -172,5 +172,5 @@ govulncheck: sudo docker run --rm \ -v $(CURDIR)/backend:/app \ -w /app \ - golang:1.25.7 \ + golang:1.25.10 \ sh -c "go install golang.org/x/vuln/cmd/govulncheck@latest && govulncheck ./... -show verbose"