From 53453cd2b80f2aca27961837eed92397e7b0dd7c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 9 May 2022 06:14:10 +0000 Subject: [PATCH 1/3] chore(deps): update dependency golang to v1.18 --- tunnel/cmd/secure-tunnel-server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tunnel/cmd/secure-tunnel-server/Dockerfile b/tunnel/cmd/secure-tunnel-server/Dockerfile index a912ebe5..2b71f13b 100644 --- a/tunnel/cmd/secure-tunnel-server/Dockerfile +++ b/tunnel/cmd/secure-tunnel-server/Dockerfile @@ -1,5 +1,5 @@ # ===================== -FROM golang:1.17-alpine as go-builder +FROM golang:1.18-alpine as go-builder ENV CGO_ENABLED=0 From 53383110400ca0d848729fd62969f0153abcf565 Mon Sep 17 00:00:00 2001 From: Atsushi Watanabe Date: Mon, 9 May 2022 15:26:06 +0900 Subject: [PATCH 2/3] Install git --- tunnel/cmd/secure-tunnel-server/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tunnel/cmd/secure-tunnel-server/Dockerfile b/tunnel/cmd/secure-tunnel-server/Dockerfile index 2b71f13b..81739af8 100644 --- a/tunnel/cmd/secure-tunnel-server/Dockerfile +++ b/tunnel/cmd/secure-tunnel-server/Dockerfile @@ -1,6 +1,7 @@ # ===================== FROM golang:1.18-alpine as go-builder +RUN apk add --no-cache git ENV CGO_ENABLED=0 COPY go.mod go.sum /go/src/github.com/seqsense/aws-iot-device-sdk-go/ From 7dc3b8c0af465a54aaa84bbb1f5f2137b170d4fd Mon Sep 17 00:00:00 2001 From: Atsushi Watanabe Date: Mon, 9 May 2022 15:28:31 +0900 Subject: [PATCH 3/3] Add CI for Go 1.18 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3249e5a3..217b94bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: - "1.15" - "1.16" - "1.17" + - "1.18" steps: - name: Checkout uses: actions/checkout@v3