Skip to content

Commit c726091

Browse files
authored
Merge branch 'main' into rm-sa-methods
2 parents 5ec02bc + d1422d2 commit c726091

File tree

254 files changed

+24489
-10272
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+24489
-10272
lines changed

.github/workflows/boulder-ci.yml

Lines changed: 3 additions & 3 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.
@@ -71,7 +71,7 @@ jobs:
7171
- name: Docker Login
7272
# You may pin to the exact commit or the version.
7373
# uses: docker/login-action@f3364599c6aa293cdc2b8391b1b56d0c30e45c8a
74-
uses: docker/login-action@v3.5.0
74+
uses: docker/login-action@v3.6.0
7575
with:
7676
# Username used to log against the Docker registry
7777
username: ${{ secrets.DOCKER_USERNAME}}
@@ -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

ca/ca.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ func (ca *certificateAuthorityImpl) issuePrecertificate(ctx context.Context, cer
295295
}
296296

297297
func (ca *certificateAuthorityImpl) IssueCertificate(ctx context.Context, issueReq *capb.IssueCertificateRequest) (*capb.IssueCertificateResponse, error) {
298-
if core.IsAnyNilOrZero(issueReq, issueReq.Csr, issueReq.RegistrationID, issueReq.OrderID) {
298+
if core.IsAnyNilOrZero(issueReq, issueReq.RegistrationID, issueReq.OrderID, issueReq.CertProfileName, issueReq.Csr) {
299299
return nil, berrors.InternalServerError("Incomplete issue certificate request")
300300
}
301301

0 commit comments

Comments
 (0)