Skip to content

Commit c444108

Browse files
authored
bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164)
Signed-off-by: Filipe Laíns <lains@archlinux.org>
1 parent 1731d6d commit c444108

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
@@ -38,7 +38,7 @@ jobs:
3838
needs: check_source
3939
if: needs.check_source.outputs.run_tests == 'true'
4040
steps:
41-
- uses: actions/checkout@v1
41+
- uses: actions/checkout@v2
4242
- name: Build CPython
4343
run: .\PCbuild\build.bat -e -p Win32
4444
- name: Display build info
@@ -52,7 +52,7 @@ jobs:
5252
needs: check_source
5353
if: needs.check_source.outputs.run_tests == 'true'
5454
steps:
55-
- uses: actions/checkout@v1
55+
- uses: actions/checkout@v2
5656
- name: Build CPython
5757
run: .\PCbuild\build.bat -e -p x64
5858
- name: Display build info
@@ -66,7 +66,7 @@ jobs:
6666
needs: check_source
6767
if: needs.check_source.outputs.run_tests == 'true'
6868
steps:
69-
- uses: actions/checkout@v1
69+
- uses: actions/checkout@v2
7070
- name: Configure CPython
7171
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
7272
- name: Build CPython
@@ -84,7 +84,7 @@ jobs:
8484
env:
8585
OPENSSL_VER: 1.1.1f
8686
steps:
87-
- uses: actions/checkout@v1
87+
- uses: actions/checkout@v2
8888
- name: Install Dependencies
8989
run: sudo ./.github/workflows/posix-deps-apt.sh
9090
- name: 'Restore OpenSSL build'

0 commit comments

Comments
 (0)