Commit d076ca39ffb for php.net

commit d076ca39ffb492f7e548dc07eb06e8ae1cdbc07a
Merge: d92fa57a787 61c35928fac
Author: Tim Düsterhus <tim@tideways-gmbh.com>
Date:   Wed Dec 17 15:21:16 2025 +0100

    Merge branch 'PHP-8.2' into PHP-8.3

    * PHP-8.2:
      Update GitHub Action workflows to `actions/checkout@v6` (8.2)
      Update GitHub Action workflows to `actions/cache@v5`
      Update GitHub Action workflows to `actions/checkout@v6`

diff --cc .github/workflows/push.yml
index a9a74da837b,9a7a0ea4adb..daddc6adec0
--- a/.github/workflows/push.yml
+++ b/.github/workflows/push.yml
@@@ -67,32 -64,18 +67,32 @@@ jobs
        fail-fast: false
        matrix:
          include:
 -          - debug: true
 -            zts: false
            - debug: false
 +            zts: false
 +            asan: false
 +          - debug: true
              zts: true
 -    name: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
 -    runs-on: ubuntu-22.04
 +            asan: true
 +    name: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}"
 +    runs-on: ubuntu-${{ !matrix.asan && '22' || '24' }}.04
      steps:
        - name: git checkout
-         uses: actions/checkout@v5
+         uses: actions/checkout@v6
 +      - name: apt
 +        uses: ./.github/actions/apt-x64
 +      - name: System info
 +        run: |
 +          echo "::group::Show host CPU info"
 +          lscpu
 +          echo "::endgroup::"
 +          echo "::group::Show installed package versions"
 +          dpkg -l
 +          echo "::endgroup::"
        - name: Create MSSQL container
 +        if: ${{ !matrix.asan }}
          uses: ./.github/actions/setup-mssql
        - name: Create Oracle container
 +        if: ${{ !matrix.asan }}
          uses: ./.github/actions/setup-oracle
        - name: Setup Caddy server
          uses: ./.github/actions/setup-caddy