aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe Laíns <lains@archlinux.org>2020-05-18 13:52:45 +0100
committerGitHub <noreply@github.com>2020-05-18 14:52:45 +0200
commitc444108dd62672f2b41539bcc8f15da44501f405 (patch)
tree9a0484822a443afce13b69ecf235879ccb193cb2 /.github
parentbpo-34956: Fix macOS _tkinter use of Tcl/Tk in /Library/Frameworks (GH-20171) (diff)
downloadcpython-c444108dd62672f2b41539bcc8f15da44501f405.tar.gz
cpython-c444108dd62672f2b41539bcc8f15da44501f405.tar.bz2
cpython-c444108dd62672f2b41539bcc8f15da44501f405.zip
bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164)
Signed-off-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 dbef550643e..7c3bca3fc06 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'