Skip to content

Commit 9ef49e1

Browse files
Use v2 of GitHub Actions where available (GH-20232)
Automerge-Triggered-By: @Mariatta (cherry picked from commit 7fbe65d) Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent 381ceea commit 9ef49e1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build_msi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
name: 'Windows (x86) Installer'
2222
runs-on: windows-latest
2323
steps:
24-
- uses: actions/checkout@v1
24+
- uses: actions/checkout@v2
2525
- name: Build CPython installer
2626
run: .\Tools\msi\build.bat -x86
2727

2828
build_win_amd64:
2929
name: 'Windows (x64) Installer'
3030
runs-on: windows-latest
3131
steps:
32-
- uses: actions/checkout@v1
32+
- uses: actions/checkout@v2
3333
- name: Build CPython installer
3434
run: .\Tools\msi\build.bat -x64

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
OPENSSL_VER: 1.1.1f
2727
steps:
28-
- uses: actions/checkout@v1
28+
- uses: actions/checkout@v2
2929
- name: Install Dependencies
3030
run: sudo ./.github/workflows/posix-deps-apt.sh
3131
- name: 'Restore OpenSSL build'
@@ -73,7 +73,7 @@ jobs:
7373
name: 'Ubuntu (C Coverage)'
7474
runs-on: ubuntu-latest
7575
steps:
76-
- uses: actions/checkout@v1
76+
- uses: actions/checkout@v2
7777
- name: Install Dependencies
7878
run: sudo ./.github/workflows/posix-deps-apt.sh
7979
- name: Configure CPython

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: 'Docs'
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v1
25+
- uses: actions/checkout@v2
2626
- name: 'Install Dependencies'
2727
run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
2828
- name: 'Configure CPython'

0 commit comments

Comments
 (0)