1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3'

* PHP-8.3:
  Update GitHub Action workflows to `actions/checkout@v4` (8.3+)
  Update GitHub Action workflows to `actions/checkout@v4`
This commit is contained in:
Tim Düsterhus
2023-09-13 22:18:16 +02:00
2 changed files with 22 additions and 22 deletions

View File

@@ -15,7 +15,7 @@ jobs:
matrix-include: ${{ steps.set-matrix.outputs.matrix-include }}
windows-matrix-include: ${{ steps.set-matrix.outputs.windows-matrix-include }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Set fetch-depth to 0 to clone the full repository
# including all branches. This is required to find
@@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-${{ ((matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && !matrix.asan) && '22.04' || '20.04' }}
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: Create MSSQL container
@@ -163,7 +163,7 @@ jobs:
MYSQL_ROOT_PASSWORD: root
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: apt
@@ -233,7 +233,7 @@ jobs:
runs-on: macos-11
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: brew
@@ -300,7 +300,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create MSSQL container
uses: ./.github/actions/setup-mssql
- name: apt
@@ -347,7 +347,7 @@ jobs:
USE_TRACKED_ALLOC: 1
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: apt
@@ -520,7 +520,7 @@ jobs:
runs-on: ubuntu-${{ (matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && '22.04' || '20.04' }}
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: Create MSSQL container
@@ -596,7 +596,7 @@ jobs:
runs-on: ubuntu-${{ (matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && '22.04' || '20.04' }}
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: apt
@@ -696,7 +696,7 @@ jobs:
runs-on: ubuntu-${{ (matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && '22.04' || '20.04' }}
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: apt
@@ -751,38 +751,38 @@ jobs:
CXX: ccache g++
steps:
- name: git checkout PHP
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: php
- name: git checkout apcu
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: krakjoe/apcu
path: apcu
- name: git checkout imagick
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Imagick/imagick
path: imagick
- name: git checkout memcached
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: php-memcached-dev/php-memcached
path: memcached
- name: git checkout redis
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: phpredis/phpredis
path: redis
- name: git checkout xdebug
# Currently breaks due to a PHP <=8.3 version check
if: false
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: xdebug/xdebug
path: xdebug
- name: git checkout yaml
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: php/pecl-file_formats-yaml
path: yaml
@@ -878,7 +878,7 @@ jobs:
- name: git config
run: git config --global core.autocrlf false && git config --global core.eol lf
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch.ref }}
- name: Setup

View File

@@ -75,7 +75,7 @@ jobs:
image: ${{ matrix.asan && 'ubuntu:23.04' || null }}
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: apt
uses: ./.github/actions/apt-x64
- name: System info
@@ -138,7 +138,7 @@ jobs:
runs-on: macos-11
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: brew
uses: ./.github/actions/brew
- name: ccache
@@ -185,7 +185,7 @@ jobs:
- name: git config
run: git config --global core.autocrlf false && git config --global core.eol lf
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup-windows
- name: Build
@@ -198,7 +198,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: apt
@@ -257,7 +257,7 @@ jobs:
mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVILEGES;"
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'wordpress'@'localhost' WITH GRANT OPTION;"
- name: git checkout benchmarking-data
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: php/benchmarking-data
ssh-key: ${{ secrets.BENCHMARKING_DATA_DEPLOY_KEY }}