Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ services:
- bouldernet

bpkimetal:
image: ghcr.io/pkimetal/pkimetal:v1.20.0
image: ghcr.io/pkimetal/pkimetal:v1.41.0
networks:
- bouldernet

Expand Down
5 changes: 4 additions & 1 deletion test/config-next/zlint.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ ignore_lints = [
# Some linters continue to complain about the lack of an AIA OCSP URI, even
# when a CRLDP is present.
"certlint:br_certificates_must_include_an_http_url_of_the_ocsp_responder",
"x509lint:no_ocsp_over_http"
"x509lint:no_ocsp_over_http",
# ctlint requires CCADB data to verify SCT signatures; our test issuers are
# not in CCADB so this warning fires for every issued certificate.
"ctlint:cannot_verify_sct_signature_without_issuer_spki,_which_could_not_be_found_in_the_available_ccadb_data",
]

[e_pkimetal_lint_cabf_serverauth_crl]
Expand Down
3 changes: 3 additions & 0 deletions test/config/zlint.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ ignore_lints = [
# issued under the "classic" profile, but have removed it from our "tlsserver"
# and "shortlived" profiles.
"pkilint:cabf.serverauth.subscriber_rsa_digitalsignature_and_keyencipherment_present",
# ctlint requires CCADB data to verify SCT signatures; our test issuers are
# not in CCADB so this warning fires for every issued certificate.
"ctlint:cannot_verify_sct_signature_without_issuer_spki,_which_could_not_be_found_in_the_available_ccadb_data",
]

[e_pkimetal_lint_cabf_serverauth_crl]
Expand Down
Loading