[Python-checkins] Use v2 of GitHub Actions where available (GH-20232)

Miss Islington (bot) webhook-mailer at python.org
Wed May 20 12:59:44 EDT 2020


https://github.com/python/cpython/commit/9ef49e1876f9d5d68cc74591de22e30c6a3ac7ad
commit: 9ef49e1876f9d5d68cc74591de22e30c6a3ac7ad
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-20T09:59:40-07:00
summary:

Use v2 of GitHub Actions where available (GH-20232)


Automerge-Triggered-By: @Mariatta
(cherry picked from commit 7fbe65dbc42985d002d9538fe9a9887e6e6af66c)

Co-authored-by: Hugo van Kemenade <hugovk at users.noreply.github.com>

files:
M .github/workflows/build_msi.yml
M .github/workflows/coverage.yml
M .github/workflows/doc.yml

diff --git a/.github/workflows/build_msi.yml b/.github/workflows/build_msi.yml
index e9ecf54727562..769b3d012e940 100644
--- a/.github/workflows/build_msi.yml
+++ b/.github/workflows/build_msi.yml
@@ -21,7 +21,7 @@ jobs:
     name: 'Windows (x86) Installer'
     runs-on: windows-latest
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at v2
     - name: Build CPython installer
       run: .\Tools\msi\build.bat -x86
 
@@ -29,6 +29,6 @@ jobs:
     name: 'Windows (x64) Installer'
     runs-on: windows-latest
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at v2
     - name: Build CPython installer
       run: .\Tools\msi\build.bat -x64
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index e58ad4a1dfd48..b5668f85dd7ab 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -25,7 +25,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'
@@ -73,7 +73,7 @@ jobs:
     name: 'Ubuntu (C Coverage)'
     runs-on: ubuntu-latest
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at v2
     - name: Install Dependencies
       run: sudo ./.github/workflows/posix-deps-apt.sh
     - name: Configure CPython
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index c8d395cea5156..e7d99583e6909 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -22,7 +22,7 @@ jobs:
     name: 'Docs'
     runs-on: ubuntu-latest
     steps:
-    - uses: actions/checkout at v1
+    - uses: actions/checkout at v2
     - name: 'Install Dependencies'
       run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
     - name: 'Configure CPython'



More information about the Python-checkins mailing list