|
58 | 58 | - uses: actions/checkout@v4
|
59 | 59 | with:
|
60 | 60 | fetch-depth: 1
|
| 61 | + persist-credentials: false |
61 | 62 | - name: Runner image version
|
62 | 63 | run: echo "IMAGE_VERSION=${ImageVersion}" >> "$GITHUB_ENV"
|
63 | 64 | - name: Check Autoconf and aclocal versions
|
|
94 | 95 | if: needs.check_source.outputs.run_tests == 'true'
|
95 | 96 | steps:
|
96 | 97 | - uses: actions/checkout@v4
|
| 98 | + with: |
| 99 | + persist-credentials: false |
97 | 100 | - uses: actions/setup-python@v5
|
98 | 101 | with:
|
99 | 102 | python-version: '3.x'
|
@@ -268,6 +271,8 @@ jobs:
|
268 | 271 | LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
|
269 | 272 | steps:
|
270 | 273 | - uses: actions/checkout@v4
|
| 274 | + with: |
| 275 | + persist-credentials: false |
271 | 276 | - name: Runner image version
|
272 | 277 | run: echo "IMAGE_VERSION=${ImageVersion}" >> "$GITHUB_ENV"
|
273 | 278 | - name: Restore config.cache
|
@@ -328,6 +333,8 @@ jobs:
|
328 | 333 | PYTHONSTRICTEXTENSIONBUILD: 1
|
329 | 334 | steps:
|
330 | 335 | - uses: actions/checkout@v4
|
| 336 | + with: |
| 337 | + persist-credentials: false |
331 | 338 | - name: Register gcc problem matcher
|
332 | 339 | run: echo "::add-matcher::.github/problem-matchers/gcc.json"
|
333 | 340 | - name: Install Dependencies
|
@@ -411,7 +418,7 @@ jobs:
|
411 | 418 | #
|
412 | 419 | # (GH-104097) test_sysconfig is skipped because it has tests that are
|
413 | 420 | # failing when executed from inside a virtual environment.
|
414 |
| - ${{ env.VENV_PYTHON }} -m test \ |
| 421 | + "${VENV_PYTHON}" -m test \ |
415 | 422 | -W \
|
416 | 423 | -o \
|
417 | 424 | -j4 \
|
@@ -446,6 +453,8 @@ jobs:
|
446 | 453 | ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
|
447 | 454 | steps:
|
448 | 455 | - uses: actions/checkout@v4
|
| 456 | + with: |
| 457 | + persist-credentials: false |
449 | 458 | - name: Runner image version
|
450 | 459 | run: echo "IMAGE_VERSION=${ImageVersion}" >> "$GITHUB_ENV"
|
451 | 460 | - name: Restore config.cache
|
|
0 commit comments