]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164)
authorFilipe Laíns <lains@archlinux.org>
Mon, 18 May 2020 12:52:45 +0000 (13:52 +0100)
committerGitHub <noreply@github.com>
Mon, 18 May 2020 12:52:45 +0000 (14:52 +0200)
Signed-off-by: Filipe Laíns <lains@archlinux.org>
.github/workflows/build.yml

index dbef550643e813f994acbeef4dbd1c43999ce16e..7c3bca3fc0671b093de004824d2d8e24b012bb42 100644 (file)
@@ -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'