summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2023-02-20 15:43:33 (GMT)
committerGitHub <noreply@github.com>2023-02-20 15:43:33 (GMT)
commitc218132f935ba046663056f30fbcfd86a757a593 (patch)
tree2c79b707e380550a10e642aa5406bb04da41bfbe
parent63877f697d678a7c8ac7c878d8225c0b2724b839 (diff)
downloadcpython-c218132f935ba046663056f30fbcfd86a757a593.zip
cpython-c218132f935ba046663056f30fbcfd86a757a593.tar.gz
cpython-c218132f935ba046663056f30fbcfd86a757a593.tar.bz2
[3.10] gh-101981: Fix Ubuntu SSL tests with OpenSSL (3.1.0-beta1) CI issue (gh-102079)
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0f3ad7b..07261dc 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -266,7 +266,7 @@ jobs:
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
- name: 'Restore OpenSSL build'
id: cache-openssl
- uses: actions/cache@v3.0.2
+ uses: actions/cache@v3
with:
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -277,7 +277,7 @@ jobs:
run: |
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
- name: Configure ccache action
- uses: hendrikmuhs/ccache-action@v1
+ uses: hendrikmuhs/ccache-action@v1.2
- name: Configure CPython
run: ./configure --with-pydebug --with-openssl=$OPENSSL_DIR
- name: Build CPython