From f2ea4e8570ad3c7fc1b556f0c3a36fac584aade9 Mon Sep 17 00:00:00 2001 From: Ronni Skansing Date: Thu, 18 Sep 2025 14:00:37 +0200 Subject: [PATCH] bump golang version Signed-off-by: Ronni Skansing --- .github/workflows/release.yml | 2 +- .github/workflows/test-build.yml | 2 +- backend/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8b5bee..67ddc77 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: -v "$(pwd)":/app \ -w /app/backend \ -e CGO_ENABLED=1 \ - golang:1.24 \ + golang:1.25.1 \ 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/phishingclub main.go diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 0bab508..00777ec 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -45,7 +45,7 @@ jobs: -v "$(pwd)":/app \ -w /app/backend \ -e CGO_ENABLED=1 \ - golang:1.24 \ + golang:1.25.1 \ 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/phishingclub main.go diff --git a/backend/Dockerfile b/backend/Dockerfile index c9ae40c..d5a0b3c 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ # development docker file -FROM golang:1.24.5 +FROM golang:1.25.1 EXPOSE 8000 8001