[Python-checkins] (no subject)

Filipe Laíns webhook-mailer at python.org
Mon May 18 08:52:53 EDT 2020




To: python-checkins at python.org
Subject: bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/c444108dd62672f2b41539bcc8f15da44501=
f405
commit: c444108dd62672f2b41539bcc8f15da44501f405
branch: master
author: Filipe La=C3=ADns <lains at archlinux.org>
committer: GitHub <noreply at github.com>
date: 2020-05-18T14:52:45+02:00
summary:

bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164)

Signed-off-by: Filipe La=C3=ADns <lains at archlinux.org>

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dbef550643e81..7c3bca3fc0671 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 =3D=3D 'true'
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at 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 =3D=3D 'true'
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at 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 =3D=3D 'true'
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at v2
     - name: Configure CPython
       run: ./configure --with-pydebug --with-openssl=3D/usr/local/opt/openss=
l --prefix=3D/opt/python-dev
     - name: Build CPython
@@ -84,7 +84,7 @@ jobs:
     env:
       OPENSSL_VER: 1.1.1f
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at v2
     - name: Install Dependencies
       run: sudo ./.github/workflows/posix-deps-apt.sh
     - name: 'Restore OpenSSL build'



More information about the Python-checkins mailing list