Skip to content

Commit

Permalink
Remove go1.19 from CI (#6671)
Browse files Browse the repository at this point in the history
Go 1.20.1 is now deployed everywhere. Removing go 1.19 from CI will
allow us to begin adopting various go 1.20-only features that we want,
such as the new crypto/ecdh package.
  • Loading branch information
aarongable authored Feb 16, 2023
1 parent 58f1c55 commit 1c785e7
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/boulder-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ jobs:
matrix:
# Add additional docker image tags here and all tests will be run with the additional image.
BOULDER_TOOLS_TAG:
- go1.19.5_2023-02-15
- go1.19.6_2023-02-15
- go1.20.1_2023-02-15
# Tests command definitions. Use the entire "docker compose" command you want to run.
tests:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
fail-fast: false
matrix:
GO_VERSION:
- "1.19.5"
- "1.19.6"
- "1.20.1"
runs-on: ubuntu-20.04
permissions:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/try-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
fail-fast: false
matrix:
GO_VERSION:
- "1.19.5"
- "1.19.6"
- "1.20.1"
runs-on: ubuntu-20.04
steps:
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.19.5" "1.19.6" "1.20.1" )
GO_CI_VERSIONS=( "1.20.1" )
# 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.
Expand Down

0 comments on commit 1c785e7

Please sign in to comment.