Skip to content

Commit fc756f6

Browse files
hugovkambv
andauthored
[3.10] CI: Bump GitHub Actions (GH-108879) (#108892)
Co-authored-by: Łukasz Langa <[email protected]>
1 parent 5970435 commit fc756f6

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run_tests: ${{ steps.check.outputs.run_tests }}
3535
run_ssl_tests: ${{ steps.check.outputs.run_ssl_tests }}
3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3838
- name: Check for source changes
3939
id: check
4040
run: |
@@ -66,8 +66,8 @@ jobs:
6666
needs: check_source
6767
if: needs.check_source.outputs.run_tests == 'true'
6868
steps:
69-
- uses: actions/checkout@v2
70-
- uses: actions/setup-python@v2
69+
- uses: actions/checkout@v4
70+
- uses: actions/setup-python@v4
7171
- name: Install Dependencies
7272
run: |
7373
sudo ./.github/workflows/posix-deps-apt.sh
@@ -96,8 +96,8 @@ jobs:
9696
needs: check_source
9797
if: needs.check_source.outputs.run_tests == 'true'
9898
steps:
99-
- uses: actions/checkout@v3
100-
- uses: actions/setup-python@v3
99+
- uses: actions/checkout@v4
100+
- uses: actions/setup-python@v4
101101
- name: Install Dependencies
102102
run: sudo ./.github/workflows/posix-deps-apt.sh
103103
- name: Add ccache to PATH
@@ -142,7 +142,7 @@ jobs:
142142
env:
143143
IncludeUwp: 'true'
144144
steps:
145-
- uses: actions/checkout@v3
145+
- uses: actions/checkout@v4
146146
- name: Build CPython
147147
run: .\PCbuild\build.bat -e -p Win32
148148
- name: Display build info
@@ -158,7 +158,7 @@ jobs:
158158
env:
159159
IncludeUwp: 'true'
160160
steps:
161-
- uses: actions/checkout@v3
161+
- uses: actions/checkout@v4
162162
- name: Register MSVC problem matcher
163163
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
164164
- name: Build CPython
@@ -179,7 +179,7 @@ jobs:
179179
HOMEBREW_NO_INSTALL_CLEANUP: 1
180180
PYTHONSTRICTEXTENSIONBUILD: 1
181181
steps:
182-
- uses: actions/checkout@v3
182+
- uses: actions/checkout@v4
183183
- name: Install Homebrew dependencies
184184
run: brew install pkg-config [email protected] xz gdbm tcl-tk
185185
- name: Configure CPython
@@ -206,7 +206,7 @@ jobs:
206206
OPENSSL_VER: 1.1.1v
207207
PYTHONSTRICTEXTENSIONBUILD: 1
208208
steps:
209-
- uses: actions/checkout@v3
209+
- uses: actions/checkout@v4
210210
- name: Register gcc problem matcher
211211
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
212212
- name: Install Dependencies
@@ -254,7 +254,7 @@ jobs:
254254
OPENSSL_DIR: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
255255
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
256256
steps:
257-
- uses: actions/checkout@v3
257+
- uses: actions/checkout@v4
258258
- name: Register gcc problem matcher
259259
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
260260
- name: Install Dependencies

.github/workflows/build_msi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434
name: 'Windows (x86) Installer'
3535
runs-on: windows-latest
3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3838
- name: Build CPython installer
3939
run: .\Tools\msi\build.bat --doc -x86
4040

4141
build_win_amd64:
4242
name: 'Windows (x64) Installer'
4343
runs-on: windows-latest
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
- name: Build CPython installer
4747
run: .\Tools\msi\build.bat --doc -x64

.github/workflows/doc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: 'Docs'
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
- name: Register Sphinx problem matcher
3737
run: echo "::add-matcher::.github/problem-matchers/sphinx.json"
3838
- name: 'Set up Python'
@@ -56,7 +56,7 @@ jobs:
5656
name: 'Doctest'
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v4
6060
- name: Register Sphinx problem matcher
6161
run: echo "::add-matcher::.github/problem-matchers/sphinx.json"
6262
- uses: actions/cache@v3

.github/workflows/verify-ensurepip-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
verify:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- uses: actions/setup-python@v4
2929
with:
3030
python-version: '3'

0 commit comments

Comments
 (0)