From f04dd95c38ee8e7405008b5c007affbfbc07bc16 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 1 Aug 2023 10:21:32 -0400 Subject: [PATCH 1/2] actions: bump cache ver to rebuild with OpenSSL 3.1.2 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb1b417f..5389266f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -114,7 +114,7 @@ jobs: path: | bin.tar.xz src/cpython - key: gam-${{ matrix.jid }}-20230728 + key: gam-${{ matrix.jid }}-20230801 - name: Untar Cache archive if: matrix.goal == 'build' && steps.cache-python-ssl.outputs.cache-hit == 'true' From effbae928929c8f29762eedae3f9f6229d44cbac Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 1 Aug 2023 10:32:52 -0400 Subject: [PATCH 2/2] actions: invert gpg macos check --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5389266f..6ffa3f70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -620,7 +620,7 @@ jobs: env: PASSCODE: ${{ secrets.PASSCODE }} run: | - if ([ "${RUNNER_OS}" == "macOS" ] && ! which gpg > /dev/null); then + if ([ "${RUNNER_OS}" == "macOS" ] && which gpg > /dev/null); then brew install gnupg fi source ../.github/actions/decrypt.sh ../.github/actions/creds.tar.xz.gpg creds.tar.xz "${GAMCFGDIR}"