Skip to content

Commit 7bcd988

Browse files
authored
Update to go1.26.2 (#8703)
This release contains several fixes for security issues in crypto/x509, crypto/tls, and other packages. See https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU for details. We believe we are unaffected by all issues fixed in this release, except for a trivial potential of resource exhaustion in the VA via the crypto/tls key update deadlock.
1 parent e139723 commit 7bcd988

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/boulder-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
matrix:
3737
# Add additional docker image tags here and all tests will be run with the additional image.
3838
BOULDER_TOOLS_TAG:
39-
- go1.26.1_2026-03-09
39+
- go1.26.2_2026-04-07
4040
# Tests command definitions. Use the entire "docker compose" command you want to run.
4141
tests:
4242
# Run ./test.sh --help for a description of each of the flags.
@@ -129,7 +129,7 @@ jobs:
129129
# When set to true, GitHub cancels all in-progress jobs if any matrix job fails. Default: true
130130
fail-fast: false
131131
matrix:
132-
go-version: [ '1.26.1' ]
132+
go-version: [ '1.26.2' ]
133133

134134
steps:
135135
# Checks out your repository under $GITHUB_WORKSPACE, so your job can access it

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
GO_VERSION:
38-
- "1.26.1"
38+
- "1.26.2"
3939
runs-on: ubuntu-24.04
4040
permissions:
4141
contents: write

.github/workflows/try-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
GO_VERSION:
23-
- "1.26.1"
23+
- "1.26.2"
2424
runs-on: ubuntu-24.04
2525
steps:
2626
- uses: actions/checkout@v6

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
context: test/boulder-tools/
99
# Should match one of the GO_CI_VERSIONS in test/boulder-tools/tag_and_upload.sh.
1010
args:
11-
GO_VERSION: 1.26.1
11+
GO_VERSION: 1.26.2
1212
environment:
1313
# To solve HTTP-01 and TLS-ALPN-01 challenges, change the IP in FAKE_DNS
1414
# to the IP address where your ACME client's solver is listening. This is

test/boulder-tools/tag_and_upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ DOCKER_REPO="letsencrypt/boulder-tools"
1212
# .github/workflows/release.yml,
1313
# .github/workflows/try-release.yml if appropriate,
1414
# and .github/workflows/boulder-ci.yml with the new container tag.
15-
GO_CI_VERSIONS=( "1.26.1" )
15+
GO_CI_VERSIONS=( "1.26.2" )
1616

1717
echo "Please login to allow push to DockerHub"
1818
docker login

0 commit comments

Comments
 (0)