Use v2 of GitHub Actions where available (GH-20232)
Automerge-Triggered-By: @Mariatta
This commit is contained in:
parent
e572c7f6db
commit
7fbe65dbc4
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue