Skip to content

Commit 08be1f2

Browse files
committed
Bump GitHub Actions
1 parent 0560203 commit 08be1f2

16 files changed

+53
-53
lines changed

.github/workflows/add-issue-header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
issues: write
2121
timeout-minutes: 5
2222
steps:
23-
- uses: actions/github-script@v7
23+
- uses: actions/github-script@v8
2424
with:
2525
# language=JavaScript
2626
script: |

.github/workflows/build.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: |
6565
apt update && apt install git -yq
6666
git config --global --add safe.directory "$GITHUB_WORKSPACE"
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v6
6868
with:
6969
fetch-depth: 1
7070
persist-credentials: false
@@ -101,10 +101,10 @@ jobs:
101101
needs: build-context
102102
if: needs.build-context.outputs.run-tests == 'true'
103103
steps:
104-
- uses: actions/checkout@v4
104+
- uses: actions/checkout@v6
105105
with:
106106
persist-credentials: false
107-
- uses: actions/setup-python@v5
107+
- uses: actions/setup-python@v6
108108
with:
109109
python-version: '3.x'
110110
- name: Runner image version
@@ -270,7 +270,7 @@ jobs:
270270
SSL_DIR: ${{ github.workspace }}/multissl/${{ matrix.ssl }}/${{ matrix.ssl_ver }}
271271
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/${{ matrix.ssl }}/${{ matrix.ssl_ver }}/lib
272272
steps:
273-
- uses: actions/checkout@v4
273+
- uses: actions/checkout@v6
274274
with:
275275
persist-credentials: false
276276
- name: Runner image version
@@ -286,7 +286,7 @@ jobs:
286286
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/${{ matrix.ssl }}/${SSL_VER}/lib" >> "$GITHUB_ENV"
287287
- name: 'Restore SSL build'
288288
id: cache-ssl
289-
uses: actions/cache@v4
289+
uses: actions/cache@v5
290290
with:
291291
path: ./multissl/${{ env.SSL }}/${{ env.SSL_VER }}
292292
key: ${{ env.IMAGE_OS_VERSION }}-multissl-${{ env.SSL }}-${{ env.SSL_VER }}
@@ -331,7 +331,7 @@ jobs:
331331

332332
runs-on: ${{ matrix.runs-on }}
333333
steps:
334-
- uses: actions/checkout@v4
334+
- uses: actions/checkout@v6
335335
with:
336336
persist-credentials: false
337337
- name: Build and test
@@ -344,7 +344,7 @@ jobs:
344344
timeout-minutes: 60
345345
runs-on: macos-14
346346
steps:
347-
- uses: actions/checkout@v4
347+
- uses: actions/checkout@v6
348348
with:
349349
persist-credentials: false
350350

@@ -376,7 +376,7 @@ jobs:
376376
OPENSSL_VER: 3.0.18
377377
PYTHONSTRICTEXTENSIONBUILD: 1
378378
steps:
379-
- uses: actions/checkout@v4
379+
- uses: actions/checkout@v6
380380
with:
381381
persist-credentials: false
382382
- name: Register gcc problem matcher
@@ -390,7 +390,7 @@ jobs:
390390
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> "$GITHUB_ENV"
391391
- name: 'Restore OpenSSL build'
392392
id: cache-openssl
393-
uses: actions/cache@v4
393+
uses: actions/cache@v5
394394
with:
395395
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
396396
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -440,7 +440,7 @@ jobs:
440440
./python -m venv "$VENV_LOC" && "$VENV_PYTHON" -m pip install -r "${GITHUB_WORKSPACE}/Tools/requirements-hypothesis.txt"
441441
- name: 'Restore Hypothesis database'
442442
id: cache-hypothesis-database
443-
uses: actions/cache@v4
443+
uses: actions/cache@v5
444444
with:
445445
path: ${{ env.CPYTHON_BUILDDIR }}/.hypothesis/
446446
key: hypothesis-database-${{ github.head_ref || github.run_id }}
@@ -467,7 +467,7 @@ jobs:
467467
-x test_subprocess \
468468
-x test_signal \
469469
-x test_sysconfig
470-
- uses: actions/upload-artifact@v4
470+
- uses: actions/upload-artifact@v6
471471
if: always()
472472
with:
473473
name: hypothesis-example-db
@@ -488,7 +488,7 @@ jobs:
488488
PYTHONSTRICTEXTENSIONBUILD: 1
489489
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
490490
steps:
491-
- uses: actions/checkout@v4
491+
- uses: actions/checkout@v6
492492
with:
493493
persist-credentials: false
494494
- name: Runner image version
@@ -498,7 +498,7 @@ jobs:
498498
- name: Install dependencies
499499
run: sudo ./.github/workflows/posix-deps-apt.sh
500500
- name: Set up GCC-10 for ASAN
501-
uses: egor-tensin/setup-gcc@v1
501+
uses: egor-tensin/setup-gcc@v2
502502
with:
503503
version: 10
504504
- name: Configure OpenSSL env vars
@@ -508,7 +508,7 @@ jobs:
508508
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> "$GITHUB_ENV"
509509
- name: 'Restore OpenSSL build'
510510
id: cache-openssl
511-
uses: actions/cache@v4
511+
uses: actions/cache@v5
512512
with:
513513
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
514514
key: ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -558,7 +558,7 @@ jobs:
558558
needs: build-context
559559
if: needs.build-context.outputs.run-ubuntu == 'true'
560560
steps:
561-
- uses: actions/checkout@v4
561+
- uses: actions/checkout@v6
562562
with:
563563
persist-credentials: false
564564
- name: Runner image version
@@ -615,7 +615,7 @@ jobs:
615615
sanitizer: ${{ matrix.sanitizer }}
616616
- name: Upload crash
617617
if: failure() && steps.build.outcome == 'success'
618-
uses: actions/upload-artifact@v4
618+
uses: actions/upload-artifact@v6
619619
with:
620620
name: ${{ matrix.sanitizer }}-artifacts
621621
path: ./out/artifacts

.github/workflows/jit.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-24.04
3939
timeout-minutes: 90
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v6
4242
with:
4343
persist-credentials: false
4444
- name: Build tier two interpreter
@@ -92,10 +92,10 @@ jobs:
9292
architecture: aarch64
9393
runner: ubuntu-24.04-arm
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v6
9696
with:
9797
persist-credentials: false
98-
- uses: actions/setup-python@v5
98+
- uses: actions/setup-python@v6
9999
with:
100100
python-version: '3.11'
101101

@@ -140,10 +140,10 @@ jobs:
140140
llvm:
141141
- 21
142142
steps:
143-
- uses: actions/checkout@v4
143+
- uses: actions/checkout@v6
144144
with:
145145
persist-credentials: false
146-
- uses: actions/setup-python@v5
146+
- uses: actions/setup-python@v6
147147
with:
148148
python-version: '3.11'
149149
- name: Build with JIT enabled and GIL disabled
@@ -168,10 +168,10 @@ jobs:
168168
llvm:
169169
- 21
170170
steps:
171-
- uses: actions/checkout@v4
171+
- uses: actions/checkout@v6
172172
with:
173173
persist-credentials: false
174-
- uses: actions/setup-python@v5
174+
- uses: actions/setup-python@v6
175175
with:
176176
python-version: '3.11'
177177
- name: Build with JIT
@@ -195,10 +195,10 @@ jobs:
195195
llvm:
196196
- 21
197197
steps:
198-
- uses: actions/checkout@v4
198+
- uses: actions/checkout@v6
199199
with:
200200
persist-credentials: false
201-
- uses: actions/setup-python@v5
201+
- uses: actions/setup-python@v6
202202
with:
203203
python-version: '3.11'
204204
- name: Build with JIT and tailcall

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 10
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
persist-credentials: false
2525
- uses: j178/prek-action@v1

.github/workflows/mypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ jobs:
6565
"Tools/peg_generator",
6666
]
6767
steps:
68-
- uses: actions/checkout@v4
68+
- uses: actions/checkout@v6
6969
with:
7070
persist-credentials: false
71-
- uses: actions/setup-python@v5
71+
- uses: actions/setup-python@v6
7272
with:
7373
python-version: "3.13"
7474
cache: pip

.github/workflows/new-bugs-announce-notifier.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 10
1515
steps:
16-
- uses: actions/setup-node@v4
16+
- uses: actions/setup-node@v6
1717
with:
1818
node-version: 20
1919
- run: npm install mailgun.js form-data
2020
- name: Send notification
21-
uses: actions/github-script@v7
21+
uses: actions/github-script@v8
2222
env:
2323
MAILGUN_API_KEY: ${{ secrets.MAILGUN_PYTHON_ORG_MAILGUN_KEY }}
2424
with:

.github/workflows/reusable-context.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ jobs:
6666
run-windows-tests: ${{ steps.changes.outputs.run-windows-tests }}
6767
steps:
6868
- name: Set up Python
69-
uses: actions/setup-python@v5
69+
uses: actions/setup-python@v6
7070
with:
7171
python-version: "3"
7272

7373
- run: >-
7474
echo '${{ github.event_name }}'
7575
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v6
7777
with:
7878
persist-credentials: false
7979
ref: >-

.github/workflows/reusable-docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
refspec_pr: '+${{ github.event.pull_request.head.sha }}:remotes/origin/${{ github.event.pull_request.head.ref }}'
2828
steps:
2929
- name: 'Check out latest PR branch commit'
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
with:
3232
persist-credentials: false
3333
ref: >-
@@ -52,7 +52,7 @@ jobs:
5252
git fetch origin "${refspec_base}" --shallow-since="${DATE}" \
5353
--no-tags --prune --no-recurse-submodules
5454
- name: 'Set up Python'
55-
uses: actions/setup-python@v5
55+
uses: actions/setup-python@v6
5656
with:
5757
python-version: '3'
5858
cache: 'pip'
@@ -82,10 +82,10 @@ jobs:
8282
runs-on: ubuntu-24.04
8383
timeout-minutes: 60
8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v6
8686
with:
8787
persist-credentials: false
88-
- uses: actions/cache@v4
88+
- uses: actions/cache@v5
8989
with:
9090
path: ~/.cache/pip
9191
key: ubuntu-doc-${{ hashFiles('Doc/requirements.txt') }}
@@ -108,11 +108,11 @@ jobs:
108108
runs-on: ubuntu-latest
109109
timeout-minutes: 30
110110
steps:
111-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v6
112112
with:
113113
persist-credentials: false
114114
- name: 'Set up Python'
115-
uses: actions/setup-python@v5
115+
uses: actions/setup-python@v6
116116
with:
117117
python-version: '3'
118118
cache: 'pip'

.github/workflows/reusable-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
PYTHONSTRICTEXTENSIONBUILD: 1
2929
TERM: linux
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
with:
3333
persist-credentials: false
3434
- name: Runner image version

.github/workflows/reusable-san.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-24.04
2727
timeout-minutes: 60
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
with:
3131
persist-credentials: false
3232
- name: Runner image version
@@ -99,7 +99,7 @@ jobs:
9999
run: find "${GITHUB_WORKSPACE}" -name 'san_log.*' | xargs head -n 1000
100100
- name: Archive logs
101101
if: always()
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v6
103103
with:
104104
name: >-
105105
${{ inputs.sanitizer }}-logs-${{

0 commit comments

Comments
 (0)