Skip to content

Commit 9c1428c

Browse files
[3.12] CI: Bump GitHub Actions (GH-108879) (#108889)
CI: Bump GitHub Actions (GH-108879) (cherry picked from commit 572678e) Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent 88ff02e commit 9c1428c

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/build.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run_hypothesis: ${{ steps.check.outputs.run_hypothesis }}
4343
config_hash: ${{ steps.config_hash.outputs.hash }}
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
- name: Check for source changes
4747
id: check
4848
run: |
@@ -154,13 +154,13 @@ jobs:
154154
needs: check_source
155155
if: needs.check_source.outputs.run_tests == 'true'
156156
steps:
157-
- uses: actions/checkout@v3
157+
- uses: actions/checkout@v4
158158
- name: Restore config.cache
159159
uses: actions/cache@v3
160160
with:
161161
path: config.cache
162162
key: ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}
163-
- uses: actions/setup-python@v3
163+
- uses: actions/setup-python@v4
164164
- name: Install Dependencies
165165
run: sudo ./.github/workflows/posix-deps-apt.sh
166166
- name: Add ccache to PATH
@@ -217,7 +217,7 @@ jobs:
217217
env:
218218
IncludeUwp: 'true'
219219
steps:
220-
- uses: actions/checkout@v3
220+
- uses: actions/checkout@v4
221221
- name: Build CPython
222222
run: .\PCbuild\build.bat -e -d -p Win32
223223
- name: Display build info
@@ -234,7 +234,7 @@ jobs:
234234
env:
235235
IncludeUwp: 'true'
236236
steps:
237-
- uses: actions/checkout@v3
237+
- uses: actions/checkout@v4
238238
- name: Register MSVC problem matcher
239239
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
240240
- name: Build CPython
@@ -256,7 +256,7 @@ jobs:
256256
HOMEBREW_NO_INSTALL_CLEANUP: 1
257257
PYTHONSTRICTEXTENSIONBUILD: 1
258258
steps:
259-
- uses: actions/checkout@v3
259+
- uses: actions/checkout@v4
260260
- name: Restore config.cache
261261
uses: actions/cache@v3
262262
with:
@@ -290,7 +290,7 @@ jobs:
290290
OPENSSL_VER: 1.1.1v
291291
PYTHONSTRICTEXTENSIONBUILD: 1
292292
steps:
293-
- uses: actions/checkout@v3
293+
- uses: actions/checkout@v4
294294
- name: Register gcc problem matcher
295295
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
296296
- name: Install Dependencies
@@ -363,7 +363,7 @@ jobs:
363363
OPENSSL_DIR: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
364364
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
365365
steps:
366-
- uses: actions/checkout@v3
366+
- uses: actions/checkout@v4
367367
- name: Restore config.cache
368368
uses: actions/cache@v3
369369
with:
@@ -411,7 +411,7 @@ jobs:
411411
OPENSSL_VER: 1.1.1v
412412
PYTHONSTRICTEXTENSIONBUILD: 1
413413
steps:
414-
- uses: actions/checkout@v3
414+
- uses: actions/checkout@v4
415415
- name: Register gcc problem matcher
416416
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
417417
- name: Install Dependencies
@@ -521,7 +521,7 @@ jobs:
521521
PYTHONSTRICTEXTENSIONBUILD: 1
522522
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
523523
steps:
524-
- uses: actions/checkout@v3
524+
- uses: actions/checkout@v4
525525
- name: Restore config.cache
526526
uses: actions/cache@v3
527527
with:

.github/workflows/build_msi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
matrix:
3434
type: [x86, x64, arm64]
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: Build CPython installer
3838
run: .\Tools\msi\build.bat --doc -${{ matrix.type }}

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 10
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v4
2020
with:
2121
python-version: "3.x"

.github/workflows/mypy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
timeout-minutes: 10
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- uses: actions/setup-python@v4
3434
with:
3535
python-version: "3.x"

.github/workflows/reusable-docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
refspec_pr: '+${{ github.event.pull_request.head.sha }}:remotes/origin/${{ github.event.pull_request.head.ref }}'
2424
steps:
2525
- name: 'Check out latest PR branch commit'
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
ref: ${{ github.event.pull_request.head.sha }}
2929
# Adapted from https://github.com/actions/checkout/issues/520#issuecomment-1167205721
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ubuntu-latest
7171
timeout-minutes: 60
7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7474
- name: 'Set up Python'
7575
uses: actions/setup-python@v4
7676
with:
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ubuntu-latest
8989
timeout-minutes: 60
9090
steps:
91-
- uses: actions/checkout@v3
91+
- uses: actions/checkout@v4
9292
- uses: actions/cache@v3
9393
with:
9494
path: ~/.cache/pip

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
timeout-minutes: 10
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
- uses: actions/setup-python@v4
3030
with:
3131
python-version: '3'

0 commit comments

Comments
 (0)