Skip to content

Commit dadcb93

Browse files
committed
Update CI to go1.25.2
1 parent 36f7723 commit dadcb93

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.0_2025-08-15
39+
- go1.25.2_2025-10-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.
@@ -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.0' ]
125+
go-version: [ '1.25.2' ]
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
GO_VERSION:
18-
- "1.25.0"
18+
- "1.25.2"
1919
runs-on: ubuntu-24.04
2020
permissions:
2121
contents: write

.github/workflows/try-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
GO_VERSION:
22-
- "1.25.0"
22+
- "1.25.2"
2323
runs-on: ubuntu-24.04
2424
steps:
2525
- 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.0
11+
GO_VERSION: 1.25.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.25.0" )
15+
GO_CI_VERSIONS=( "1.25.2" )
1616

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

0 commit comments

Comments
 (0)