mirror of
https://github.com/pldubouilh/gossa
synced 2025-12-06 00:12:36 +01:00
bump golang release
This commit is contained in:
parent
31c8ee518a
commit
67b2019a56
4 changed files with 4 additions and 4 deletions
2
.github/workflows/always.yml
vendored
2
.github/workflows/always.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -1,4 +1,4 @@
|
|||
FLAGS := -trimpath
|
||||
FLAGS := -trimpath -ldflags="-w -s"
|
||||
NOCGO := CGO_ENABLED=0
|
||||
|
||||
build::
|
||||
|
|
|
|||
2
go.mod
2
go.mod
|
|
@ -1,3 +1,3 @@
|
|||
module github.com/pldubouilh/gossa
|
||||
|
||||
go 1.23.0
|
||||
go 1.23.4
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue