Skip to content

Commit 5e464b0

Browse files
chore: add testruns for php 8.3 (#293)
bump github actions/checkout v3 => v4 Co-authored-by: Christopher Georg <[email protected]>
1 parent 982fda2 commit 5e464b0

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/pre-release-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
php-versions: ['7.4', '8.0']
1919
name: integration-tests-against-rc (PHP ${{ matrix.php-versions }})
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Install PHP
2323
uses: shivammathur/setup-php@v2
2424
with:

.github/workflows/tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
MEILI_NO_ANALYTICS: true
2626
strategy:
2727
matrix:
28-
php-version: ['7.4', '8.0', '8.1', '8.2']
28+
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
2929
include:
3030
- php-version: '7.4'
3131
sf-version: '4.4.*'
@@ -39,10 +39,12 @@ jobs:
3939
sf-version: '6.1.*'
4040
- php-version: '8.2'
4141
sf-version: '6.2.*'
42+
- php-version: '8.3'
43+
sf-version: '6.3.*'
4244

4345
name: integration-tests (PHP ${{ matrix.php-version }}) (Symfony ${{ matrix.sf-version }})
4446
steps:
45-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4648
- name: Install PHP
4749
uses: shivammathur/setup-php@v2
4850
with:
@@ -65,7 +67,7 @@ jobs:
6567
runs-on: ubuntu-latest
6668
name: 'Code style'
6769
steps:
68-
- uses: actions/checkout@v3
70+
- uses: actions/checkout@v4
6971

7072
- name: Install PHP
7173
uses: shivammathur/setup-php@v2
@@ -94,7 +96,7 @@ jobs:
9496
name: Yaml linting check
9597
runs-on: ubuntu-latest
9698
steps:
97-
- uses: actions/checkout@v3
99+
- uses: actions/checkout@v4
98100
- name: Yaml lint check
99101
uses: ibiqlik/action-yamllint@v3
100102
with:

bors.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ status = [
33
'integration-tests (PHP 8.0) (Symfony 6.0.*)',
44
'integration-tests (PHP 8.1) (Symfony 6.1.*)',
55
'integration-tests (PHP 8.2) (Symfony 6.2.*)',
6+
'integration-tests (PHP 8.3) (Symfony 6.3.*)',
67
'Code style'
78
]
89
# 1 hour timeout

0 commit comments

Comments
 (0)