Skip to content

Commit 48bef2c

Browse files
specific php versions. dockerfile used wrong var?
1 parent 289cafc commit 48bef2c

7 files changed

+9
-9
lines changed

.github/workflows/integration-test-cluster-neo4j-4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php: ['8.1', '8.3']
16+
php: ['8.1.31', '8.3.17']
1717
env:
1818
PHP_VERSION: ${{ matrix.php }}
1919
CONNECTION: neo4j://neo4j:testtest@localhost:7688

.github/workflows/integration-test-cluster-neo4j-5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php: ['8.1', '8.3']
16+
php: ['8.1.31', '8.3.17']
1717
env:
1818
PHP_VERSION: ${{ matrix.php }}
1919
CONNECTION: neo4j://neo4j:testtest@localhost:7687

.github/workflows/integration-test-single-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php: ['8.1', '8.3']
16+
php: ['8.1.31', '8.3.17']
1717
name: "Running on PHP ${{ matrix.php }} with a Neo4j 4 instance connecting over all available protocols"
1818

1919
steps:
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
strategy:
4848
matrix:
49-
php: ['8.1', '8.3']
49+
php: ['8.1.31', '8.3.17']
5050
name: "Running on PHP ${{ matrix.php }} with a Neo4j 5 instance connecting over all available protocols"
5151

5252
steps:

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.3'
21+
php-version: '8.3.17'
2222

2323
- name: Cache Composer dependencies
2424
uses: actions/cache@v4

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: "Running Unit Tests"
1515
strategy:
1616
matrix:
17-
php: ['8.1', '8.2', '8.3']
17+
php: ['8.1.31', '8.2.27', '8.3.17']
1818

1919
steps:
2020
- uses: actions/checkout@v4

docker-compose-neo4j-4.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
context: .
3333
dockerfile: Dockerfile
3434
args:
35-
PHP_VERSION: "${PHP_VERSION-8.1}"
35+
PHP_VERSION: "${PHP_VERSION}"
3636
networks:
3737
- neo4j
3838
volumes:
@@ -47,7 +47,7 @@ services:
4747
context: .
4848
dockerfile: Dockerfile
4949
args:
50-
PHP_VERSION: "${PHP_VERSION-8.1}"
50+
PHP_VERSION: "${PHP_VERSION}"
5151
WITH_XDEBUG: true
5252
working_dir: /opt/project
5353
volumes:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ x-definitions:
2626
context: .
2727
dockerfile: Dockerfile
2828
args:
29-
PHP_VERSION: "${PHP_VERSION-8.1}"
29+
PHP_VERSION: "${PHP_VERSION}"
3030
volumes:
3131
- .:/opt/project
3232
x-common-cluster:

0 commit comments

Comments
 (0)