Skip to content

Commit

Permalink
Update CI to go1.21.8 and go1.22.1 (#7356)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongable committed Mar 5, 2024
1 parent 517efde commit 7ddb2be
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/boulder-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +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.5_2024-02-14
- go1.22.0_2024-02-14
- go1.21.8_2024-03-05
- go1.22.1_2024-03-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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
fail-fast: false
matrix:
GO_VERSION:
- "1.21.5"
- "1.22.0"
- "1.21.8"
- "1.22.1"
runs-on: ubuntu-20.04
permissions:
contents: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/try-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
fail-fast: false
matrix:
GO_VERSION:
- "1.21.5"
- "1.22.0"
- "1.21.8"
- "1.22.1"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ services:
image: letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-latest}
build:
context: test/boulder-tools/
# Should match one of the GO_DEV_VERSIONS in test/boulder-tools/tag_and_upload.sh.
# Should match one of the GO_CI_VERSIONS in test/boulder-tools/tag_and_upload.sh.
args:
GO_VERSION: 1.21.5
GO_VERSION: 1.21.8
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
2 changes: 1 addition & 1 deletion test/boulder-tools/tag_and_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ 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.5" "1.22.0" )
GO_CI_VERSIONS=( "1.21.8" "1.22.1" )

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

0 comments on commit 7ddb2be

Please sign in to comment.