Skip to content

Commit 9ecf25e

Browse files
bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164)
Signed-off-by: Filipe Laíns <lains@archlinux.org> (cherry picked from commit c444108) Co-authored-by: Filipe Laíns <lains@archlinux.org>
1 parent 205b554 commit 9ecf25e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
needs: check_source
3434
if: needs.check_source.outputs.run_tests == 'true'
3535
steps:
36-
- uses: actions/checkout@v1
36+
- uses: actions/checkout@v2
3737
- name: Build CPython
3838
run: .\PCbuild\build.bat -e -p Win32
3939
- name: Display build info
@@ -47,7 +47,7 @@ jobs:
4747
needs: check_source
4848
if: needs.check_source.outputs.run_tests == 'true'
4949
steps:
50-
- uses: actions/checkout@v1
50+
- uses: actions/checkout@v2
5151
- name: Build CPython
5252
run: .\PCbuild\build.bat -e -p x64
5353
- name: Display build info
@@ -61,7 +61,7 @@ jobs:
6161
needs: check_source
6262
if: needs.check_source.outputs.run_tests == 'true'
6363
steps:
64-
- uses: actions/checkout@v1
64+
- uses: actions/checkout@v2
6565
- name: Configure CPython
6666
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
6767
- name: Build CPython
@@ -79,7 +79,7 @@ jobs:
7979
env:
8080
OPENSSL_VER: 1.1.1f
8181
steps:
82-
- uses: actions/checkout@v1
82+
- uses: actions/checkout@v2
8383
- name: Install Dependencies
8484
run: sudo ./.github/workflows/posix-deps-apt.sh
8585
- name: 'Restore OpenSSL build'

0 commit comments

Comments
 (0)