From 53fa85f3be8d64d647529bcad5c280261f566721 Mon Sep 17 00:00:00 2001 From: Umberto Baldi Date: Wed, 15 May 2024 15:39:39 +0200 Subject: [PATCH] remove double quotes, they cause errors with new version of openssl: `Could not read certificate from ` --- .github/workflows/check-certificates.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-certificates.yml b/.github/workflows/check-certificates.yml index 4f6c5af8526..e91169ef7d5 100644 --- a/.github/workflows/check-certificates.yml +++ b/.github/workflows/check-certificates.yml @@ -90,7 +90,7 @@ jobs: EXPIRATION_DATE="$( ( openssl pkcs12 \ - -in "${{ env.CERTIFICATE_PATH }}" \ + -in ${{ env.CERTIFICATE_PATH }} \ -clcerts \ -legacy \ -nodes \ @@ -111,7 +111,7 @@ jobs: EXPIRATION_DATE="$( ( openssl x509 \ - -in "${{ env.CERTIFICATE_PATH }}" \ + -in ${{ env.CERTIFICATE_PATH }} \ -noout \ -enddate ) | (