|
55 | 55 | if: needs.check_source.outputs.run_tests == 'true' |
56 | 56 | steps: |
57 | 57 | - uses: actions/checkout@v4 |
| 58 | + with: |
| 59 | + persist-credentials: false |
58 | 60 | - uses: actions/setup-python@v5 |
59 | 61 | - name: Install dependencies |
60 | 62 | run: | |
@@ -109,6 +111,7 @@ jobs: |
109 | 111 | - uses: actions/checkout@v4 |
110 | 112 | with: |
111 | 113 | fetch-depth: 1 |
| 114 | + persist-credentials: false |
112 | 115 | - name: Runner image version |
113 | 116 | run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV |
114 | 117 | - name: Check Autoconf and aclocal versions |
@@ -145,6 +148,8 @@ jobs: |
145 | 148 | if: needs.check_source.outputs.run_tests == 'true' |
146 | 149 | steps: |
147 | 150 | - uses: actions/checkout@v4 |
| 151 | + with: |
| 152 | + persist-credentials: false |
148 | 153 | - uses: actions/setup-python@v5 |
149 | 154 | with: |
150 | 155 | python-version: '3.x' |
@@ -299,6 +304,8 @@ jobs: |
299 | 304 | LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib |
300 | 305 | steps: |
301 | 306 | - uses: actions/checkout@v4 |
| 307 | + with: |
| 308 | + persist-credentials: false |
302 | 309 | - name: Runner image version |
303 | 310 | run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV |
304 | 311 | - name: Restore config.cache |
@@ -351,6 +358,8 @@ jobs: |
351 | 358 | PYTHONSTRICTEXTENSIONBUILD: 1 |
352 | 359 | steps: |
353 | 360 | - uses: actions/checkout@v4 |
| 361 | + with: |
| 362 | + persist-credentials: false |
354 | 363 | - name: Register gcc problem matcher |
355 | 364 | run: echo "::add-matcher::.github/problem-matchers/gcc.json" |
356 | 365 | - name: Install dependencies |
@@ -433,7 +442,7 @@ jobs: |
433 | 442 | # |
434 | 443 | # (GH-104097) test_sysconfig is skipped because it has tests that are |
435 | 444 | # failing when executed from inside a virtual environment. |
436 | | - ${{ env.VENV_PYTHON }} -m test \ |
| 445 | + "${VENV_PYTHON}" -m test \ |
437 | 446 | -W \ |
438 | 447 | -o \ |
439 | 448 | -j4 \ |
@@ -465,6 +474,8 @@ jobs: |
465 | 474 | ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0 |
466 | 475 | steps: |
467 | 476 | - uses: actions/checkout@v4 |
| 477 | + with: |
| 478 | + persist-credentials: false |
468 | 479 | - name: Runner image version |
469 | 480 | run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV |
470 | 481 | - name: Restore config.cache |
|
0 commit comments