chore: upgrade go to `1.21.9` (#12861)

This commit is contained in:
Colin Adler 2024-04-03 13:20:26 -05:00 committed by GitHub
parent a3187dc30f
commit cb6fea61df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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

View File

@ -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.