Skip to content

Commit 53fa85f

Browse files
committed
remove double quotes, they cause errors with new version of openssl: Could not read certificate from <stdin>
1 parent f1339a0 commit 53fa85f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
EXPIRATION_DATE="$(
9191
(
9292
openssl pkcs12 \
93-
-in "${{ env.CERTIFICATE_PATH }}" \
93+
-in ${{ env.CERTIFICATE_PATH }} \
9494
-clcerts \
9595
-legacy \
9696
-nodes \
@@ -111,7 +111,7 @@ jobs:
111111
EXPIRATION_DATE="$(
112112
(
113113
openssl x509 \
114-
-in "${{ env.CERTIFICATE_PATH }}" \
114+
-in ${{ env.CERTIFICATE_PATH }} \
115115
-noout \
116116
-enddate
117117
) | (

0 commit comments

Comments
 (0)