From 1bb8ef6e477d64884cafa263e6a74ba03e20cfd2 Mon Sep 17 00:00:00 2001 From: Samantha Date: Thu, 9 Nov 2023 16:17:35 -0500 Subject: [PATCH] Upgrade from go1.21.3 to go1.21.4 (#7154) --- .github/workflows/boulder-ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/try-release.yml | 2 +- docker-compose.yml | 2 +- test/boulder-tools/tag_and_upload.sh | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/boulder-ci.yml b/.github/workflows/boulder-ci.yml index ddef0344a35..d8b8bdf72a1 100644 --- a/.github/workflows/boulder-ci.yml +++ b/.github/workflows/boulder-ci.yml @@ -36,7 +36,7 @@ jobs: matrix: # Add additional docker image tags here and all tests will be run with the additional image. BOULDER_TOOLS_TAG: - - go1.21.3_2023-10-12 + - go1.21.4_2023-11-09 # Tests command definitions. Use the entire "docker compose" command you want to run. tests: # Run ./test.sh --help for a description of each of the flags. @@ -103,7 +103,7 @@ jobs: # When set to true, GitHub cancels all in-progress jobs if any matrix job fails. Default: true fail-fast: false matrix: - go-version: [ '1.21.3' ] + go-version: [ '1.21.4' ] steps: # Checks out your repository under $GITHUB_WORKSPACE, so your job can access it @@ -125,7 +125,7 @@ jobs: # When set to true, GitHub cancels all in-progress jobs if any matrix job fails. Default: true fail-fast: false matrix: - go-version: [ '1.21.3' ] + go-version: [ '1.21.4' ] steps: # Checks out your repository under $GITHUB_WORKSPACE, so your job can access it diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43a94cfd141..5f3ba578a01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: GO_VERSION: - - "1.21.3" + - "1.21.4" runs-on: ubuntu-20.04 permissions: contents: write diff --git a/.github/workflows/try-release.yml b/.github/workflows/try-release.yml index 993777ffbf4..b8bf1cdb999 100644 --- a/.github/workflows/try-release.yml +++ b/.github/workflows/try-release.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: GO_VERSION: - - "1.21.3" + - "1.21.4" runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v4 diff --git a/docker-compose.yml b/docker-compose.yml index e54d185a272..f6473c8ef28 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: boulder: # Should match one of the GO_DEV_VERSIONS in test/boulder-tools/tag_and_upload.sh. - image: letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-go1.21.3_2023-10-12} + image: letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-go1.21.4_2023-11-09} environment: # To solve HTTP-01 and TLS-ALPN-01 challenges, change the IP in FAKE_DNS # to the IP address where your ACME client's solver is listening. diff --git a/test/boulder-tools/tag_and_upload.sh b/test/boulder-tools/tag_and_upload.sh index 0373d7bf634..cced6f889e0 100755 --- a/test/boulder-tools/tag_and_upload.sh +++ b/test/boulder-tools/tag_and_upload.sh @@ -12,11 +12,11 @@ DOCKER_REPO="letsencrypt/boulder-tools" # .github/workflows/release.yml, # .github/workflows/try-release.yml if appropriate, # and .github/workflows/boulder-ci.yml with the new container tag. -GO_CI_VERSIONS=( "1.21.3" ) +GO_CI_VERSIONS=( "1.21.4" ) # These versions are built for both platforms that boulder devs use. # When updating GO_DEV_VERSIONS, please also update # ../../docker-compose.yml's default Go version. -GO_DEV_VERSIONS=( "1.21.3" ) +GO_DEV_VERSIONS=( "1.21.4" ) echo "Please login to allow push to DockerHub" docker login