File tree Expand file tree Collapse file tree 5 files changed +5
-8
lines changed
Expand file tree Collapse file tree 5 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 2020 steps :
2121 - uses : actions/setup-go@v2
2222 with :
23- go-version : ^1.16
23+ go-version : ^1.17
2424
2525 - uses : actions/checkout@v2
2626 with :
4040 curl -Lo $HOME/bin/skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
4141 curl -Lo $HOME/bin/container-structure-test https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
4242 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
4444 chmod +x $HOME/bin/*
4545 echo "$HOME/bin" >> $GITHUB_PATH
4646
Original file line number Diff line number Diff line change 1- ARG GOVERSION=1.16
1+ ARG GOVERSION=1.17
22FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as delve
33ARG BUILDPLATFORM
44ARG TARGETOS
Original file line number Diff line number Diff line change @@ -20,9 +20,6 @@ profiles:
2020 artifacts :
2121 - image : kubectl
2222 context : kubectl
23- docker :
24- buildArgs :
25- GOVERSION : 1.16
2623 deploy :
2724 kubectl :
2825 manifests :
Original file line number Diff line number Diff line change 1- ARG GOVERSION=1.16
1+ ARG GOVERSION=1.17
22FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as build
33ARG BUILDPLATFORM
44ARG TARGETOS
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ COPY pydevd.patch .
6969RUN patch -p0 -d /dbgpy/pydevd/python3.9/lib/python3.9/site-packages < pydevd.patch
7070RUN PYTHONUSERBASE=/dbgpy/pydevd-pycharm/python3.9 pip install --user pydevd-pycharm --no-warn-script-location
7171
72- FROM golang:1.14.1 as build
72+ FROM golang:1.17 as build
7373COPY launcher/ .
7474# Produce an as-static-as-possible wrapper binary to work on musl and glibc
7575RUN 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