Skip to content

Commit a2d247b

Browse files
committed
add flag to correctly recognize the algorithm
see openssl/openssl#23089
1 parent 29c73a2 commit a2d247b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: .github/workflows/check-certificates.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
(
6363
openssl ${{ matrix.certificate.type }} \
6464
-in "${{ env.CERTIFICATE_PATH }}" \
65-
-noout -passin env:CERTIFICATE_PASSWORD
65+
-noout -passin env:CERTIFICATE_PASSWORD \
66+
-legacy
6667
) || (
6768
echo "::error::Verification of ${{ matrix.certificate.identifier }} failed!!!"
6869
exit 1
@@ -92,7 +93,8 @@ jobs:
9293
-in "${{ env.CERTIFICATE_PATH }}" \
9394
-clcerts \
9495
-nodes \
95-
-passin env:CERTIFICATE_PASSWORD
96+
-passin env:CERTIFICATE_PASSWORD \
97+
-legacy
9698
) | (
9799
openssl x509 \
98100
-noout \

0 commit comments

Comments
 (0)