|
47 | 47 | if: needs.check_source.outputs.run_tests == 'true' |
48 | 48 | steps: |
49 | 49 | - uses: actions/checkout@v4 |
| 50 | + with: |
| 51 | + persist-credentials: false |
50 | 52 | - uses: actions/setup-python@v5 |
51 | 53 | - name: Install dependencies |
52 | 54 | run: | |
@@ -101,6 +103,7 @@ jobs: |
101 | 103 | - uses: actions/checkout@v4 |
102 | 104 | with: |
103 | 105 | fetch-depth: 1 |
| 106 | + persist-credentials: false |
104 | 107 | - name: Runner image version |
105 | 108 | run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV |
106 | 109 | - name: Check Autoconf and aclocal versions |
@@ -137,6 +140,8 @@ jobs: |
137 | 140 | if: needs.check_source.outputs.run_tests == 'true' |
138 | 141 | steps: |
139 | 142 | - uses: actions/checkout@v4 |
| 143 | + with: |
| 144 | + persist-credentials: false |
140 | 145 | - uses: actions/setup-python@v5 |
141 | 146 | with: |
142 | 147 | python-version: '3.x' |
@@ -301,6 +306,8 @@ jobs: |
301 | 306 | LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib |
302 | 307 | steps: |
303 | 308 | - uses: actions/checkout@v4 |
| 309 | + with: |
| 310 | + persist-credentials: false |
304 | 311 | - name: Runner image version |
305 | 312 | run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV |
306 | 313 | - name: Restore config.cache |
@@ -361,6 +368,8 @@ jobs: |
361 | 368 | PYTHONSTRICTEXTENSIONBUILD: 1 |
362 | 369 | steps: |
363 | 370 | - uses: actions/checkout@v4 |
| 371 | + with: |
| 372 | + persist-credentials: false |
364 | 373 | - name: Register gcc problem matcher |
365 | 374 | run: echo "::add-matcher::.github/problem-matchers/gcc.json" |
366 | 375 | - name: Install Dependencies |
@@ -443,7 +452,7 @@ jobs: |
443 | 452 | # |
444 | 453 | # (GH-104097) test_sysconfig is skipped because it has tests that are |
445 | 454 | # failing when executed from inside a virtual environment. |
446 | | - ${{ env.VENV_PYTHON }} -m test \ |
| 455 | + "${VENV_PYTHON}" -m test \ |
447 | 456 | -W \ |
448 | 457 | -o \ |
449 | 458 | -j4 \ |
@@ -478,6 +487,8 @@ jobs: |
478 | 487 | ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0 |
479 | 488 | steps: |
480 | 489 | - uses: actions/checkout@v4 |
| 490 | + with: |
| 491 | + persist-credentials: false |
481 | 492 | - name: Runner image version |
482 | 493 | run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV |
483 | 494 | - name: Restore config.cache |
|
0 commit comments