From 22afc847b91a7f7a8bbb8d1884244d0fb2ed2041 Mon Sep 17 00:00:00 2001 From: Stan Hu <stanhu@gmail.com> Date: Wed, 6 Mar 2024 09:35:59 -0800 Subject: [PATCH] Update to Go 1.21.8 Release notes: https://go.dev/doc/devel/release#go1.21.minor --- .gitlab/ci/Dockerfile | 2 +- .gitlab/ci/yaml/_common.gitlab-ci.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab/ci/Dockerfile b/.gitlab/ci/Dockerfile index e49acc4d..31fd457e 100644 --- a/.gitlab/ci/Dockerfile +++ b/.gitlab/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.3-alpine3.18 +FROM golang:1.21.8-alpine3.18 # Force build - 2022-10-03T17:42:00+0000 RUN apk add --no-cache make git py-pip bash curl && \ diff --git a/.gitlab/ci/yaml/_common.gitlab-ci.yml b/.gitlab/ci/yaml/_common.gitlab-ci.yml index a6b26e98..277ec910 100644 --- a/.gitlab/ci/yaml/_common.gitlab-ci.yml +++ b/.gitlab/ci/yaml/_common.gitlab-ci.yml @@ -1,6 +1,6 @@ variables: USE_CONTAINER: "true" - CI_IMAGE: registry.gitlab.com/gitlab-org/ci-cd/docker-machine/ci:go1.21.3-alpine3.18 + CI_IMAGE: registry.gitlab.com/gitlab-org/ci-cd/docker-machine/ci:go1.21.8-alpine3.18 DOCKER_VERSION: "20.10.12" default: diff --git a/Dockerfile b/Dockerfile index 38863dbd..2cf35eec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.3 +FROM golang:1.21.8 RUN apt-get update && apt-get install -y --no-install-recommends \ openssh-client \ -- GitLab