Skip to content

Commit 7fbe65d

Browse files
authored
Use v2 of GitHub Actions where available (GH-20232)
Automerge-Triggered-By: @Mariatta
1 parent e572c7f commit 7fbe65d

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
@@ -23,14 +23,14 @@ jobs:
2323
name: 'Windows (x86) Installer'
2424
runs-on: windows-latest
2525
steps:
26-
- uses: actions/checkout@v1
26+
- uses: actions/checkout@v2
2727
- name: Build CPython installer
2828
run: .\Tools\msi\build.bat -x86
2929

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

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
OPENSSL_VER: 1.1.1f
2929
steps:
30-
- uses: actions/checkout@v1
30+
- uses: actions/checkout@v2
3131
- name: Install Dependencies
3232
run: sudo ./.github/workflows/posix-deps-apt.sh
3333
- name: 'Restore OpenSSL build'
@@ -76,7 +76,7 @@ jobs:
7676
name: 'Ubuntu (C Coverage)'
7777
runs-on: ubuntu-latest
7878
steps:
79-
- uses: actions/checkout@v1
79+
- uses: actions/checkout@v2
8080
- name: Install Dependencies
8181
run: sudo ./.github/workflows/posix-deps-apt.sh
8282
- name: Configure CPython

.github/workflows/doc.yml

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

0 commit comments

Comments
 (0)