From 877c6c13f0c247a0876faf2e28fb7afa095dd412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20La=C3=ADns?= Date: Sun, 17 May 2020 22:51:27 +0100 Subject: [PATCH] github actions: update actions/checkout to v2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Filipe LaĆ­ns --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dbef550643e813..7c3bca3fc0671b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,7 +38,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Build CPython run: .\PCbuild\build.bat -e -p Win32 - name: Display build info @@ -52,7 +52,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Build CPython run: .\PCbuild\build.bat -e -p x64 - name: Display build info @@ -66,7 +66,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Configure CPython run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev - name: Build CPython @@ -84,7 +84,7 @@ jobs: env: OPENSSL_VER: 1.1.1f steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Install Dependencies run: sudo ./.github/workflows/posix-deps-apt.sh - name: 'Restore OpenSSL build'