Skip to content

Commit b7f7f78

Browse files
committed
Bump GitHub Actions
1 parent 7f50a5f commit b7f7f78

16 files changed

+55
-55
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: 18 additions & 18 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
@@ -264,7 +264,7 @@ jobs:
264264
OPENSSL_DIR: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
265265
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
266266
steps:
267-
- uses: actions/checkout@v4
267+
- uses: actions/checkout@v6
268268
with:
269269
persist-credentials: false
270270
- name: Runner image version
@@ -280,7 +280,7 @@ jobs:
280280
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> "$GITHUB_ENV"
281281
- name: 'Restore OpenSSL build'
282282
id: cache-openssl
283-
uses: actions/cache@v4
283+
uses: actions/cache@v5
284284
with:
285285
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
286286
key: ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -316,7 +316,7 @@ jobs:
316316
OPENSSL_DIR: ${{ github.workspace }}/multissl/aws-lc/${{ matrix.awslc_ver }}
317317
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/aws-lc/${{ matrix.awslc_ver }}/lib
318318
steps:
319-
- uses: actions/checkout@v4
319+
- uses: actions/checkout@v6
320320
with:
321321
persist-credentials: false
322322
- name: Runner image version
@@ -332,7 +332,7 @@ jobs:
332332
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/aws-lc/${AWSLC_VER}/lib" >> "$GITHUB_ENV"
333333
- name: 'Restore AWS-LC build'
334334
id: cache-aws-lc
335-
uses: actions/cache@v4
335+
uses: actions/cache@v5
336336
with:
337337
path: ./multissl/aws-lc/${{ matrix.awslc_ver }}
338338
key: ${{ matrix.os }}-multissl-aws-lc-${{ matrix.awslc_ver }}
@@ -381,7 +381,7 @@ jobs:
381381

382382
runs-on: ${{ matrix.runs-on }}
383383
steps:
384-
- uses: actions/checkout@v4
384+
- uses: actions/checkout@v6
385385
with:
386386
persist-credentials: false
387387
- name: Build and test
@@ -394,7 +394,7 @@ jobs:
394394
timeout-minutes: 60
395395
runs-on: macos-14
396396
steps:
397-
- uses: actions/checkout@v4
397+
- uses: actions/checkout@v6
398398
with:
399399
persist-credentials: false
400400

@@ -426,7 +426,7 @@ jobs:
426426
OPENSSL_VER: 3.0.18
427427
PYTHONSTRICTEXTENSIONBUILD: 1
428428
steps:
429-
- uses: actions/checkout@v4
429+
- uses: actions/checkout@v6
430430
with:
431431
persist-credentials: false
432432
- name: Register gcc problem matcher
@@ -440,7 +440,7 @@ jobs:
440440
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> "$GITHUB_ENV"
441441
- name: 'Restore OpenSSL build'
442442
id: cache-openssl
443-
uses: actions/cache@v4
443+
uses: actions/cache@v5
444444
with:
445445
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
446446
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -490,7 +490,7 @@ jobs:
490490
./python -m venv "$VENV_LOC" && "$VENV_PYTHON" -m pip install -r "${GITHUB_WORKSPACE}/Tools/requirements-hypothesis.txt"
491491
- name: 'Restore Hypothesis database'
492492
id: cache-hypothesis-database
493-
uses: actions/cache@v4
493+
uses: actions/cache@v5
494494
with:
495495
path: ${{ env.CPYTHON_BUILDDIR }}/.hypothesis/
496496
key: hypothesis-database-${{ github.head_ref || github.run_id }}
@@ -517,7 +517,7 @@ jobs:
517517
-x test_subprocess \
518518
-x test_signal \
519519
-x test_sysconfig
520-
- uses: actions/upload-artifact@v4
520+
- uses: actions/upload-artifact@v6
521521
if: always()
522522
with:
523523
name: hypothesis-example-db
@@ -538,7 +538,7 @@ jobs:
538538
PYTHONSTRICTEXTENSIONBUILD: 1
539539
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
540540
steps:
541-
- uses: actions/checkout@v4
541+
- uses: actions/checkout@v6
542542
with:
543543
persist-credentials: false
544544
- name: Runner image version
@@ -548,7 +548,7 @@ jobs:
548548
- name: Install dependencies
549549
run: sudo ./.github/workflows/posix-deps-apt.sh
550550
- name: Set up GCC-10 for ASAN
551-
uses: egor-tensin/setup-gcc@v1
551+
uses: egor-tensin/setup-gcc@v2
552552
with:
553553
version: 10
554554
- name: Configure OpenSSL env vars
@@ -558,7 +558,7 @@ jobs:
558558
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> "$GITHUB_ENV"
559559
- name: 'Restore OpenSSL build'
560560
id: cache-openssl
561-
uses: actions/cache@v4
561+
uses: actions/cache@v5
562562
with:
563563
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
564564
key: ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -608,7 +608,7 @@ jobs:
608608
needs: build-context
609609
if: needs.build-context.outputs.run-ubuntu == 'true'
610610
steps:
611-
- uses: actions/checkout@v4
611+
- uses: actions/checkout@v6
612612
with:
613613
persist-credentials: false
614614
- name: Runner image version
@@ -665,7 +665,7 @@ jobs:
665665
sanitizer: ${{ matrix.sanitizer }}
666666
- name: Upload crash
667667
if: failure() && steps.build.outcome == 'success'
668-
uses: actions/upload-artifact@v4
668+
uses: actions/upload-artifact@v6
669669
with:
670670
name: ${{ matrix.sanitizer }}-artifacts
671671
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)