Skip to content

Commit f68edb1

Browse files
authored
Update CI to go1.25.5 (#8511)
This picks up fixes to the crypto/x509 standard library package, as described here: https://go.dev/doc/devel/release#go1.25.5 These security fixes do not affect our usage of the crypto/x509 package, but govulncheck isn't aware of that, so let's update anyway.
1 parent d036e47 commit f68edb1

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.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.25.2_2025-10-07
39+
- go1.25.5_2025-12-03
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.
@@ -122,7 +122,7 @@ jobs:
122122
# When set to true, GitHub cancels all in-progress jobs if any matrix job fails. Default: true
123123
fail-fast: false
124124
matrix:
125-
go-version: [ '1.25.2' ]
125+
go-version: [ '1.25.5' ]
126126

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

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
GO_VERSION:
38-
- "1.25.2"
39-
- "1.25.3"
38+
- "1.25.5"
4039
runs-on: ubuntu-24.04
4140
permissions:
4241
contents: write

.github/workflows/try-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
GO_VERSION:
23-
- "1.25.2"
24-
- "1.25.3"
23+
- "1.25.5"
2524
runs-on: ubuntu-24.04
2625
steps:
2726
- uses: actions/checkout@v4

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.25.2
11+
GO_VERSION: 1.25.5
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.25.2" )
15+
GO_CI_VERSIONS=( "1.25.5" )
1616

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

0 commit comments

Comments
 (0)