Skip to content

Commit

Permalink
remove double quotes, they cause errors with new version of openssl: …
Browse files Browse the repository at this point in the history
…`Could not read certificate from <stdin>`
  • Loading branch information
umbynos committed May 16, 2024
1 parent f1339a0 commit 53fa85f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-certificates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
EXPIRATION_DATE="$(
(
openssl pkcs12 \
-in "${{ env.CERTIFICATE_PATH }}" \
-in ${{ env.CERTIFICATE_PATH }} \
-clcerts \
-legacy \
-nodes \
Expand All @@ -111,7 +111,7 @@ jobs:
EXPIRATION_DATE="$(
(
openssl x509 \
-in "${{ env.CERTIFICATE_PATH }}" \
-in ${{ env.CERTIFICATE_PATH }} \
-noout \
-enddate
) | (
Expand Down

0 comments on commit 53fa85f

Please sign in to comment.