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