diff --git a/.github/workflows/always.yml b/.github/workflows/always.yml index 17fc8c6..b16662a 100644 --- a/.github/workflows/always.yml +++ b/.github/workflows/always.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.23.0 + go-version: 1.23.4 id: go - name: Run diff --git a/Makefile b/Makefile index 760d4f8..42e283a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -FLAGS := -trimpath +FLAGS := -trimpath -ldflags="-w -s" NOCGO := CGO_ENABLED=0 build:: diff --git a/go.mod b/go.mod index becf1ce..3dbf692 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/pldubouilh/gossa -go 1.23.0 +go 1.23.4 diff --git a/support/build.Dockerfile b/support/build.Dockerfile index 1fb46da..303c87b 100644 --- a/support/build.Dockerfile +++ b/support/build.Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/golang:1.23.0-alpine AS builder +FROM docker.io/library/golang:1.23.4-alpine AS builder RUN apk add --no-cache make WORKDIR /gossaSrc COPY . /gossaSrc