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

.github/workflows/build.yml

index 274a1df4384ac5efe1a3413269a373821c198ad7..5a9659cede69f7cf69f4a05fdcae947f32821741 100644 (file)
@@ -224,7 +224,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 }}
@@ -235,7 +235,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