summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-05-18 07:07:49 -0700
committerGitHub <noreply@github.com>2020-05-18 07:07:49 -0700
commitd8cbfa2f2a9a972caf9cbc2b1e2565c456e08888 (patch)
tree1a70f75c16c60d8c2e54c23a8bca7c97d7548c3c /.github
parentbpo-39148: enable ipv6 for datagrams in Proactor (GH-19121) (diff)
downloadcpython-d8cbfa2f2a9a972caf9cbc2b1e2565c456e08888.tar.gz
cpython-d8cbfa2f2a9a972caf9cbc2b1e2565c456e08888.tar.bz2
cpython-d8cbfa2f2a9a972caf9cbc2b1e2565c456e08888.zip
bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164)
Signed-off-by: Filipe Laíns <lains@archlinux.org> (cherry picked from commit c444108dd62672f2b41539bcc8f15da44501f405) Co-authored-by: Filipe Laíns <lains@archlinux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 27d7f15aa59..cf865059802 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -33,7 +33,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
@@ -47,7 +47,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
@@ -61,7 +61,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
@@ -79,7 +79,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'