File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 2828 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2929 - uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
3030 with :
31- go-version : ' ^1.24.4 ' # The Go version to download (if necessary) and use.
31+ go-version : ' ^1.25 ' # The Go version to download (if necessary) and use.
3232 - name : Install Build Dependencies
3333 run : make get-build-deps
3434 - name : Download required modules
Original file line number Diff line number Diff line change 55# docker run --rm -it -v /tmp:/tmp bitnami/ini-file del -k "title" -s "My book" /tmp/my.ini
66#
77
8- FROM golang:1.24-bookworm as build
9-
10- RUN apt-get update && apt-get install -y --no-install-recommends \
11- git make upx \
12- && rm -rf /var/lib/apt/lists/*
8+ FROM bitnami/golang:1.25 as build
139
1410WORKDIR /go/src/app
1511COPY . .
@@ -18,8 +14,6 @@ RUN rm -rf out
1814
1915RUN make
2016
21- RUN upx --ultra-brute out/ini-file
22-
2317FROM bitnami/minideb:bookworm
2418
2519COPY --from=build /go/src/app/out/ini-file /usr/local/bin/
Original file line number Diff line number Diff line change 11module github.com/bitnami/ini-file
22
3- go 1.24
3+ go 1.25
44
55require (
66 github.com/bitnami/gonit v0.2.0
You can’t perform that action at this time.
0 commit comments