Skip to content

Commit

Permalink
Use v2 of GitHub Actions where available (GH-20232)
Browse files Browse the repository at this point in the history
Automerge-Triggered-By: @Mariatta
(cherry picked from commit 7fbe65d)

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
  • Loading branch information
miss-islington and hugovk committed May 20, 2020
1 parent 381ceea commit 9ef49e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_msi.yml
Expand Up @@ -21,14 +21,14 @@ jobs:
name: 'Windows (x86) Installer'
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Build CPython installer
run: .\Tools\msi\build.bat -x86

build_win_amd64:
name: 'Windows (x64) Installer'
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Build CPython installer
run: .\Tools\msi\build.bat -x64
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Expand Up @@ -25,7 +25,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'
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
name: 'Ubuntu (C Coverage)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install Dependencies
run: sudo ./.github/workflows/posix-deps-apt.sh
- name: Configure CPython
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
name: 'Docs'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: 'Install Dependencies'
run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
- name: 'Configure CPython'
Expand Down

0 comments on commit 9ef49e1

Please sign in to comment.