File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed
Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 11module jenkinsci.org/plugins/durabletask/bash
22
3- go 1.24.0
3+ go 1.26
44
55replace jenkinsci.org/plugins/durabletask/common => ../../pkg/common
66
77require (
8- golang.org/x/sys v0.38 .0
8+ golang.org/x/sys v0.41 .0
99 jenkinsci.org/plugins/durabletask/common v0.0.0-00010101000000-000000000000
1010)
Original file line number Diff line number Diff line change 1- golang.org/x/sys v0.38 .0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc =
2- golang.org/x/sys v0.38 .0 /go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks =
1+ golang.org/x/sys v0.41 .0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k =
2+ golang.org/x/sys v0.41 .0 /go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks =
Original file line number Diff line number Diff line change 11module jenkinsci.org/plugins/durabletask/windows
22
3- go 1.24.0
3+ go 1.26
44
55replace jenkinsci.org/plugins/durabletask/common => ../../pkg/common
66
77require (
8- golang.org/x/sys v0.38 .0
8+ golang.org/x/sys v0.41 .0
99 jenkinsci.org/plugins/durabletask/common v0.0.0-00010101000000-000000000000
1010)
Original file line number Diff line number Diff line change 1- golang.org/x/sys v0.38 .0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc =
2- golang.org/x/sys v0.38 .0 /go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks =
1+ golang.org/x/sys v0.41 .0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k =
2+ golang.org/x/sys v0.41 .0 /go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks =
Original file line number Diff line number Diff line change 11ARG BASE_DIR=/durabletask
22ARG NAME=durable_task_monitor
33
4- FROM golang:1.25.5 -bookworm AS builder
4+ FROM golang:1.26.0 -bookworm AS builder
55ARG BASE_DIR
66ARG NAME
77COPY cmd $BASE_DIR/cmd
Original file line number Diff line number Diff line change 11ARG BASE_DIR=/durabletask
22ARG NAME=durable_task_monitor
33
4- FROM golang:1.24.3 -nanoserver-1809 AS builder
4+ FROM golang:1.26.0 -nanoserver AS builder
55ARG BASE_DIR
66ARG NAME
77COPY cmd $BASE_DIR/cmd
@@ -14,7 +14,7 @@ WORKDIR $BASE_DIR/cmd/bash
1414# RUN go mod tidy
1515RUN go get -modcacherw jenkinsci.org/plugins/durabletask/common
1616# TODO find some way to inject specific version of x/sys based on go.mod definitions
17- RUN go get -modcacherw golang.org/x/sys@v0.38 .0
17+ RUN go get -modcacherw golang.org/x/sys@v0.41 .0
1818# can't test bash on windows
1919RUN set CGO_ENABLED=0&& set GOOS=darwin&& set GOARCH=amd64&& go build -a -ldflags="-s -w" -trimpath -o %NAME%_darwin_amd64
2020RUN set CGO_ENABLED=0&& set GOOS=darwin&& set GOARCH=arm64&& go build -a -ldflags="-s -w" -trimpath -o %NAME%_darwin_arm64
@@ -25,7 +25,7 @@ RUN set CGO_ENABLED=0&& set GOOS=linux&& set GOARCH=arm64&& go build -a -ldflags
2525WORKDIR $BASE_DIR/cmd/windows
2626# RUN go mod tidy
2727RUN go get -modcacherw jenkinsci.org/plugins/durabletask/common
28- RUN go get -modcacherw golang.org/x/sys@v0.38 .0
28+ RUN go get -modcacherw golang.org/x/sys@v0.41 .0
2929RUN go test -v
3030RUN set CGO_ENABLED=0& set GOOS=windows& set GOARCH=amd64& go build -a -ldflags="-s -w" -trimpath -o %NAME%_win_64.exe
3131RUN set CGO_ENABLED=0& set GOOS=windows& set GOARCH=386& go build -a -ldflags="-s -w" -trimpath -o %NAME%_win_32.exe
Original file line number Diff line number Diff line change 11module jenkinsci.org/plugins/durabletask/common
22
3- go 1.24
3+ go 1.26
You can’t perform that action at this time.
0 commit comments