File tree Expand file tree Collapse file tree 5 files changed +521
-602
lines changed
Expand file tree Collapse file tree 5 files changed +521
-602
lines changed Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- go-version : [ 'stable', 'oldstable', '1.20 ' ]
14+ go-version : [ 'stable', '1.22 ' ]
1515 steps :
1616 - uses : actions/checkout@v4
1717 with :
Original file line number Diff line number Diff line change 1- FROM golang:1.21 -alpine as builder
1+ FROM golang:1.22 -alpine as builder
22RUN mkdir -p /linode
33WORKDIR /linode
44
@@ -11,7 +11,7 @@ COPY sentry ./sentry
1111RUN go mod download
1212RUN go build -a -ldflags '-extldflags "-static"' -o /bin/linode-cloud-controller-manager-linux /linode
1313
14- FROM alpine:3.18.4
14+ FROM alpine:3.19.1
1515RUN apk add --update --no-cache ca-certificates
1616LABEL maintainers="Linode"
1717LABEL description="Linode Cloud Controller Manager"
Original file line number Diff line number Diff line change 11IMG ?= linode/linode-cloud-controller-manager:canary
22RELEASE_DIR ?= release
3- GOLANGCI_LINT_IMG := golangci/golangci-lint:v1.55-alpine
43PLATFORM ?= linux/amd64
54
65export GO111MODULE =on
@@ -26,9 +25,9 @@ vet: fmt
2625.PHONY : lint
2726lint :
2827 docker run --rm -v " $( shell pwd) :/var/work:ro" -w /var/work \
29- golangci/golangci-lint:v1.55 .2 golangci-lint run -v --timeout=5m
28+ golangci/golangci-lint:v1.57 .2 golangci-lint run -v --timeout=5m
3029 docker run --rm -v " $( shell pwd) :/var/work:ro" -w /var/work/e2e \
31- golangci/golangci-lint:v1.55 .2 golangci-lint run -v --timeout=5m
30+ golangci/golangci-lint:v1.57 .2 golangci-lint run -v --timeout=5m
3231
3332.PHONY : fmt
3433fmt :
You can’t perform that action at this time.
0 commit comments