File tree 5 files changed +5
-8
lines changed
5 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 20
20
steps :
21
21
- uses : actions/setup-go@v2
22
22
with :
23
- go-version : ^1.16
23
+ go-version : ^1.17
24
24
25
25
- uses : actions/checkout@v2
26
26
with :
40
40
curl -Lo $HOME/bin/skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
41
41
curl -Lo $HOME/bin/container-structure-test https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
42
42
curl -Lo $HOME/bin/kind https://github.com/kubernetes-sigs/kind/releases/download/v0.11.1/kind-linux-amd64
43
- curl -Lo $HOME/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.18 .0/bin/linux/amd64/kubectl
43
+ curl -Lo $HOME/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.20 .0/bin/linux/amd64/kubectl
44
44
chmod +x $HOME/bin/*
45
45
echo "$HOME/bin" >> $GITHUB_PATH
46
46
Original file line number Diff line number Diff line change 1
- ARG GOVERSION=1.16
1
+ ARG GOVERSION=1.17
2
2
FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as delve
3
3
ARG BUILDPLATFORM
4
4
ARG TARGETOS
Original file line number Diff line number Diff line change @@ -20,9 +20,6 @@ profiles:
20
20
artifacts :
21
21
- image : kubectl
22
22
context : kubectl
23
- docker :
24
- buildArgs :
25
- GOVERSION : 1.16
26
23
deploy :
27
24
kubectl :
28
25
manifests :
Original file line number Diff line number Diff line change 1
- ARG GOVERSION=1.16
1
+ ARG GOVERSION=1.17
2
2
FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as build
3
3
ARG BUILDPLATFORM
4
4
ARG TARGETOS
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ COPY pydevd.patch .
69
69
RUN patch -p0 -d /dbgpy/pydevd/python3.9/lib/python3.9/site-packages < pydevd.patch
70
70
RUN PYTHONUSERBASE=/dbgpy/pydevd-pycharm/python3.9 pip install --user pydevd-pycharm --no-warn-script-location
71
71
72
- FROM golang:1.14.1 as build
72
+ FROM golang:1.17 as build
73
73
COPY launcher/ .
74
74
# Produce an as-static-as-possible wrapper binary to work on musl and glibc
75
75
RUN GOPATH="" CGO_ENABLED=0 go build -o launcher -ldflags '-s -w -extldflags "-static"' .
You can’t perform that action at this time.
0 commit comments