Skip to content

Commit d956cd8

Browse files
authored
Merge pull request #876 from doctrine/update-actions
update github actions
2 parents 7fc9de4 + c3b3fb9 commit d956cd8

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: '8.3'
20+
php-version: '8.4'
2121
extensions: "curl,dom,json,xml,dom"
2222
coverage: none
2323

.github/workflows/test-application.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
phpunit-doctrine_dbal:
1111
name: 'PHP ${{ matrix.php-version }} Doctrine DBAL ${{ matrix.jackalope-version }} ${{ matrix.dependencies }} Symfony ${{ matrix.symfony-version }}'
1212

13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414

1515
services:
1616
mysql:
@@ -30,6 +30,7 @@ jobs:
3030
- '8.1'
3131
- '8.2'
3232
- '8.3'
33+
- '8.4'
3334
dependencies: [highest]
3435
symfony-version: ['*']
3536
jackalope-version: ['1.*']
@@ -44,15 +45,15 @@ jobs:
4445
- php-version: '8.2'
4546
dependencies: highest
4647
symfony-version: '6.*'
47-
- php-version: '8.3'
48+
- php-version: '8.4'
4849
dependencies: highest
4950
symfony-version: '7.*'
5051
jackalope-version: '2.*'
5152
php-bench: true
5253

5354
steps:
5455
- name: Checkout project
55-
uses: actions/checkout@v3
56+
uses: actions/checkout@v5
5657

5758
- name: Install and configure PHP
5859
uses: shivammathur/setup-php@v2
@@ -99,7 +100,7 @@ jobs:
99100
phpunit-jackrabbit:
100101
name: 'PHP ${{ matrix.php-version }} Jackrabbit ${{ matrix.jackalope-version }} ${{ matrix.dependencies }} Symfony ${{ matrix.symfony-version }}'
101102

102-
runs-on: ubuntu-20.04
103+
runs-on: ubuntu-latest
103104

104105
strategy:
105106
fail-fast: false
@@ -109,6 +110,7 @@ jobs:
109110
- '8.1'
110111
- '8.2'
111112
- '8.3'
113+
- '8.4'
112114
dependencies: [highest]
113115
symfony-version: ['*']
114116
jackalope-version: ['1.*']
@@ -123,7 +125,7 @@ jobs:
123125
- php-version: '8.2'
124126
dependencies: highest
125127
symfony-version: '6.*'
126-
- php-version: '8.3'
128+
- php-version: '8.4'
127129
dependencies: highest
128130
symfony-version: '7.*'
129131
jackalope-version: '2.*'

tests/Doctrine/Tests/ODM/PHPCR/Tools/Test/QueryBuilderTesterTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ public function testDumpPaths(): void
3939
where.constraint.constraint (ConstraintComparison)
4040
where.constraint.constraint.operand_dynamic (OperandDynamicField)
4141
where.constraint.constraint.operand_static (OperandStaticLiteral)
42-
HERE
43-
, $res);
42+
HERE, $res);
4443
}
4544

4645
public function testGetNode(): void

0 commit comments

Comments
 (0)