From f7cf9809bd476f835d5841ac608457367bd3aa92 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Wed, 3 Apr 2024 17:01:28 +0000 Subject: [PATCH] chore: upgrade go to `1.21.9` --- .github/actions/setup-go/action.yaml | 2 +- .github/workflows/ci.yaml | 2 +- dogfood/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 d4c67cb7ddaf2..819bc27e0e76a 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.21.5" + default: "1.21.9" runs: using: "composite" steps: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7c58dce1e5adf..24957b7402a72 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -228,7 +228,7 @@ jobs: with: # This doesn't need caching. It's super fast anyways! cache: false - go-version: 1.21.5 + go-version: 1.21.9 - name: Install shfmt run: go install mvdan.cc/sh/v3/cmd/shfmt@v3.7.0 diff --git a/dogfood/Dockerfile b/dogfood/Dockerfile index c2899a48c01af..4daaa0a636557 100644 --- a/dogfood/Dockerfile +++ b/dogfood/Dockerfile @@ -8,7 +8,7 @@ FROM ubuntu:jammy AS go RUN apt-get update && apt-get install --yes curl gcc # Install Go manually, so that we can control the version -ARG GO_VERSION=1.21.5 +ARG GO_VERSION=1.21.9 RUN mkdir --parents /usr/local/go # Boring Go is needed to build FIPS-compliant binaries.