]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.8] gh-101981: Fix Ubuntu SSL tests with OpenSSL (3.1.0-beta1) CI i… (#102095)
authorDong-hee Na <donghee.na@python.org>
Tue, 21 Feb 2023 16:33:12 +0000 (01:33 +0900)
committerGitHub <noreply@github.com>
Tue, 21 Feb 2023 16:33:12 +0000 (17:33 +0100)
[3.8] gh-101981: Fix Ubuntu SSL tests with OpenSSL (3.1.0-beta1) CI issue (gh-102079)

.github/workflows/build.yml

index 5c8f6f27b7d8160b5e13a8c5c4697de285172b65..e019e89928879a7a9f183f16ad7c1d68810ca709 100644 (file)
@@ -201,7 +201,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@v2.1.4
+      uses: actions/cache@v3
       with:
         path: ./multissl/openssl/${{ env.OPENSSL_VER }}
         key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -212,7 +212,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