Skip to content

Commit

Permalink
Begin testing on go1.21.5 (#7185)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongable authored Dec 5, 2023
1 parent 4e36cf1 commit c45bfb8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/boulder-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ jobs:
matrix:
# Add additional docker image tags here and all tests will be run with the additional image.
BOULDER_TOOLS_TAG:
- go1.21.4_2023-11-09
- go1.21.4_2023-12-05
- go1.21.5_2023-12-05
# 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.
Expand Down Expand Up @@ -103,7 +104,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.4' ]
go-version: [ '1.21.5' ]

steps:
# Checks out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand All @@ -125,7 +126,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.4' ]
go-version: [ '1.21.5' ]

steps:
# Checks out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
matrix:
GO_VERSION:
- "1.21.4"
- "1.21.5"
runs-on: ubuntu-20.04
permissions:
contents: write
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/try-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
matrix:
GO_VERSION:
- "1.21.4"
- "1.21.5"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4_2023-11-09}
image: letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-go1.21.5_2023-12-05}
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.
Expand Down
4 changes: 2 additions & 2 deletions test/boulder-tools/tag_and_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.4" )
GO_CI_VERSIONS=( "1.21.4" "1.21.5" )
# 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.4" )
GO_DEV_VERSIONS=( "1.21.5" )

echo "Please login to allow push to DockerHub"
docker login
Expand Down

0 comments on commit c45bfb8

Please sign in to comment.