File tree Expand file tree Collapse file tree 10 files changed +12
-12
lines changed
Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1212 required : false
1313
1414env :
15- GOLANG_VERSION : 1.24.7
15+ GOLANG_VERSION : 1.24.11
1616
1717jobs :
1818 operator :
Original file line number Diff line number Diff line change 88 required : true
99
1010env :
11- GOLANG_VERSION : 1.24.7
11+ GOLANG_VERSION : 1.24.11
1212
1313jobs :
1414 build-and-push :
Original file line number Diff line number Diff line change 2828 - uses : snyk/actions/setup@master
2929 - uses : actions/setup-go@v3
3030 with :
31- go-version : ' 1.24.7 '
31+ go-version : ' 1.24.11 '
3232 - name : security-operator
3333 run : snyk test --file=operator/go.mod --fail-on=upgradable --severity-threshold=high
3434 env :
4141 - uses : snyk/actions/setup@master
4242 - uses : actions/setup-go@v3
4343 with :
44- go-version : ' 1.24.7 '
44+ go-version : ' 1.24.11 '
4545 - name : Set up executor's environment
4646 # NOTE: The executor needs a couple extra steps before we can build it,
4747 # like copying the operator's package into the executor's folder so that
Original file line number Diff line number Diff line change 88 workflow_dispatch :
99
1010env :
11- GOLANG_VERSION : 1.24.7
11+ GOLANG_VERSION : 1.24.11
1212
1313jobs :
1414 executor-lint :
Original file line number Diff line number Diff line change 88 workflow_dispatch :
99
1010env :
11- GOLANG_VERSION : 1.24.7
11+ GOLANG_VERSION : 1.24.11
1212
1313jobs :
1414 operator-lint :
Original file line number Diff line number Diff line change @@ -88,8 +88,8 @@ RUN apt-get remove -y --auto-remove \
8888
8989# INSTALL GO
9090ENV PATH=/usr/local/go/bin:$PATH
91- RUN wget https://dl.google.com/go/go1.24.7 .linux-amd64.tar.gz && \
92- tar -zxvf go1.24.7 .linux-amd64.tar.gz && \
91+ RUN wget https://dl.google.com/go/go1.24.11 .linux-amd64.tar.gz && \
92+ tar -zxvf go1.24.11 .linux-amd64.tar.gz && \
9393 mv go/ /usr/local/go
9494
9595# Install kubebuilder (using github link)
Original file line number Diff line number Diff line change 11# Build the manager binary
2- FROM golang:1.24.7 as builder
2+ FROM golang:1.24.11 as builder
33
44WORKDIR /workspace
55# Copy the Go Modules manifests
Original file line number Diff line number Diff line change 11module github.com/seldonio/seldon-core/executor
22
3- go 1.24.7
3+ go 1.24.11
44
55require (
66 github.com/cloudevents/sdk-go v1.2.0
Original file line number Diff line number Diff line change 11# Build the manager binary
2- FROM golang:1.24.7 as builder
2+ FROM golang:1.24.11 as builder
33
44WORKDIR /workspace
55# Copy the Go Modules manifests
Original file line number Diff line number Diff line change 11module github.com/seldonio/seldon-core/operator
22
3- go 1.24.7
3+ go 1.24.11
44
55require (
66 emperror.dev/errors v0.8.0
You can’t perform that action at this time.
0 commit comments