Skip to content

Commit

Permalink
Golang 1.20.3 security release upgrade (#6793)
Browse files Browse the repository at this point in the history
Release notes: https://groups.google.com/g/golang-announce/c/Xdv6JL9ENs8

This update includes fixes for excessive memory usage when parsing
headers in the net/http package.
  • Loading branch information
pgporada authored Apr 4, 2023
1 parent 8c67769 commit 8824e34
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .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.20.2_2023-03-07
- go1.20.2_2023-04-04
- go1.20.3_2023-04-04
# 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
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.20.2"
- "1.20.3"
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.20.2"
- "1.20.3"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions 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: &boulder_image letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-go1.20.2_2023-03-07}
image: &boulder_image letsencrypt/boulder-tools:${BOULDER_TOOLS_TAG:-go1.20.3_2023-04-04}
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 Expand Up @@ -62,7 +62,6 @@ services:
command: mysqld --bind-address=0.0.0.0 --slow-query-log --log-output=TABLE --log-queries-not-using-indexes=ON
logging:
driver: none

bproxysql:
image: proxysql/proxysql:2.4.4
# The --initial flag force resets the ProxySQL database on startup. By
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.20.2" )
GO_CI_VERSIONS=( "1.20.2" "1.20.3" )
# 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.20.2" )
GO_DEV_VERSIONS=( "1.20.3" )

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

0 comments on commit 8824e34

Please sign in to comment.