Skip to content

Commit 2e1f9ff

Browse files
authored
chore: use Go 1.17 and kubectl 1.20.0 (#97)
1 parent adaf86a commit 2e1f9ff

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

.github/workflows/integration-linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
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:
@@ -40,7 +40,7 @@ jobs:
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

go/helper-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GOVERSION=1.16
1+
ARG GOVERSION=1.17
22
FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as delve
33
ARG BUILDPLATFORM
44
ARG TARGETOS

integration/skaffold.yaml

-3
Original file line numberDiff line numberDiff 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:

nodejs/helper-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GOVERSION=1.16
1+
ARG GOVERSION=1.17
22
FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as build
33
ARG BUILDPLATFORM
44
ARG TARGETOS

python/helper-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ COPY pydevd.patch .
6969
RUN patch -p0 -d /dbgpy/pydevd/python3.9/lib/python3.9/site-packages < pydevd.patch
7070
RUN 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
7373
COPY launcher/ .
7474
# Produce an as-static-as-possible wrapper binary to work on musl and glibc
7575
RUN GOPATH="" CGO_ENABLED=0 go build -o launcher -ldflags '-s -w -extldflags "-static"' .

0 commit comments

Comments
 (0)