Skip to content

Commit df23344

Browse files
authored
Update CI to go1.23.7 and go1.24.1 (#8051)
These versions contain security fixes to the net/http package, but not to the parts of it which we use.
1 parent 2ac1ac0 commit df23344

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/boulder-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ 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.23.6_2025-02-11
40-
- go1.24.0_2025-02-11
39+
- go1.23.7_2025-03-10
40+
- go1.24.1_2025-03-10
4141
# Tests command definitions. Use the entire "docker compose" command you want to run.
4242
tests:
4343
# Run ./test.sh --help for a description of each of the flags.

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
GO_VERSION:
18-
- "1.23.6"
19-
- "1.24.0"
18+
- "1.23.7"
19+
- "1.24.1"
2020
runs-on: ubuntu-20.04
2121
permissions:
2222
contents: write

.github/workflows/try-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
GO_VERSION:
19-
- "1.23.6"
20-
- "1.24.0"
19+
- "1.23.7"
20+
- "1.24.1"
2121
runs-on: ubuntu-20.04
2222
steps:
2323
- uses: actions/checkout@v4

.typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,6 @@ extend-ignore-re = [
3333
"otConf" = "otConf"
3434
"serInt" = "serInt"
3535
"StratName" = "StratName"
36+
"typ" = "typ"
3637
"UPDATEs" = "UPDATEs"
3738
"vai" = "vai"

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.23.6
11+
GO_VERSION: 1.24.1
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.

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.23.6" "1.24.0" )
15+
GO_CI_VERSIONS=( "1.23.7" "1.24.1" )
1616

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

0 commit comments

Comments
 (0)