Use v2 of GitHub Actions where available (GH-20232)

Automerge-Triggered-By: @Mariatta
This commit is contained in:
Hugo van Kemenade 2020-05-20 19:38:41 +03:00 committed by GitHub
parent e572c7f6db
commit 7fbe65dbc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ jobs:
name: 'Windows (x86) Installer' name: 'Windows (x86) Installer'
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Build CPython installer - name: Build CPython installer
run: .\Tools\msi\build.bat -x86 run: .\Tools\msi\build.bat -x86
@ -31,6 +31,6 @@ jobs:
name: 'Windows (x64) Installer' name: 'Windows (x64) Installer'
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Build CPython installer - name: Build CPython installer
run: .\Tools\msi\build.bat -x64 run: .\Tools\msi\build.bat -x64

View File

@ -27,7 +27,7 @@ jobs:
env: env:
OPENSSL_VER: 1.1.1f OPENSSL_VER: 1.1.1f
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Install Dependencies - name: Install Dependencies
run: sudo ./.github/workflows/posix-deps-apt.sh run: sudo ./.github/workflows/posix-deps-apt.sh
- name: 'Restore OpenSSL build' - name: 'Restore OpenSSL build'
@ -76,7 +76,7 @@ jobs:
name: 'Ubuntu (C Coverage)' name: 'Ubuntu (C Coverage)'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Install Dependencies - name: Install Dependencies
run: sudo ./.github/workflows/posix-deps-apt.sh run: sudo ./.github/workflows/posix-deps-apt.sh
- name: Configure CPython - name: Configure CPython

View File

@ -24,7 +24,7 @@ jobs:
name: 'Docs' name: 'Docs'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: 'Install Dependencies' - name: 'Install Dependencies'
run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
- name: 'Configure CPython' - name: 'Configure CPython'