diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bc0b3293..6dee415f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,4 +94,4 @@ jobs: - name: Check benchmarks run: vendor/bin/phpbench run --revs=1 --iterations=1 - if: ${{ matrix.dependencies == 'highest' && matrix.php.version == '8.3' }} + if: ${{ matrix.dependencies == 'highest' && matrix.php.version == '8.4' }} diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml index 8be436451..d9e875a52 100644 --- a/.github/workflows/static-analysis.yaml +++ b/.github/workflows/static-analysis.yaml @@ -5,7 +5,7 @@ on: push: branches: - master - - develop + - release/** permissions: contents: read @@ -21,7 +21,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.3' + php-version: '8.4' - name: Install dependencies run: composer update --no-progress --no-interaction --prefer-dist @@ -39,7 +39,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.3' + php-version: '8.4' - name: Install dependencies run: composer update --no-progress --no-interaction --prefer-dist @@ -53,8 +53,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v5 - with: - fetch-depth: 2 # needed by codecov sometimes - name: Setup PHP uses: shivammathur/setup-php@v2