Skip to content

Commit

Permalink
Add ci-tests for php 8.3, (#296)
Browse files Browse the repository at this point in the history
fix ci deprecations

Co-authored-by: Christopher Georg <christopher.georg@sr-travel.de>
  • Loading branch information
Chris53897 and Chris8934 authored Mar 11, 2024
1 parent 54f7248 commit f9194a4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@2.7.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: 8.0
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo, zlib
coverage: none

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install the dependencies
run: composer install --no-interaction --no-suggest
Expand All @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2]
php: [8.0, 8.1, 8.2, 8.3]
symfony: [4.4, 5.4, 6.0, 7.0]
exclude:
- symfony: 7.0
Expand All @@ -45,14 +45,14 @@ jobs:
php: 8.1
steps:
- name: Setup PHP
uses: shivammathur/setup-php@2.7.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: ${{ matrix.php }}
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo_mysql, zlib
coverage: none

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install the dependencies
run: |
Expand All @@ -66,14 +66,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@2.7.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: 8.0
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo_mysql, zlib
coverage: none

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install the dependencies
run: composer update --prefer-lowest --prefer-stable --no-interaction --no-suggest
Expand Down

0 comments on commit f9194a4

Please sign in to comment.