From ed8ae2f123eb5376ba75aa107ee4071645937c42 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Thu, 28 Sep 2023 14:17:15 -0500 Subject: [PATCH] chore: upgrade go to `1.20.8` --- .github/actions/setup-go/action.yaml | 2 +- .github/workflows/ci.yaml | 2 +- examples/templates/jfrog/docker/build/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-go/action.yaml b/.github/actions/setup-go/action.yaml index 968f1f1ab8..2b42e99d26 100644 --- a/.github/actions/setup-go/action.yaml +++ b/.github/actions/setup-go/action.yaml @@ -4,7 +4,7 @@ description: | inputs: version: description: "The Go version to use." - default: "1.20.7" + default: "1.20.8" runs: using: "composite" steps: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 61a9fb40b4..43c5ff3e28 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -220,7 +220,7 @@ jobs: with: # This doesn't need caching. It's super fast anyways! cache: false - go-version: 1.20.7 + go-version: 1.20.8 - name: Install shfmt run: go install mvdan.cc/sh/v3/cmd/shfmt@v3.5.0 diff --git a/examples/templates/jfrog/docker/build/Dockerfile b/examples/templates/jfrog/docker/build/Dockerfile index 2d966c10cf..ff627a010a 100644 --- a/examples/templates/jfrog/docker/build/Dockerfile +++ b/examples/templates/jfrog/docker/build/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update \ npm \ && rm -rf /var/lib/apt/lists/* -ARG GO_VERSION=1.20.7 +ARG GO_VERSION=1.20.8 RUN mkdir --parents /usr/local/go && curl --silent --show-error --location \ "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" -o /usr/local/go.tar.gz && \ tar --extract --gzip --directory=/usr/local/go --file=/usr/local/go.tar.gz --strip-components=1