Skip to content

Commit a90cca9

Browse files
updated used versions and unified written php version style
1 parent 47d972e commit a90cca9

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php: [8.1, 8.3]
16+
php: ['8.1', '8.3']
1717
env:
1818
PHP_VERSION: ${{ matrix.php }}
1919
CONNECTION: neo4j://neo4j:testtest@localhost:7688
2020
name: "Running on PHP ${{ matrix.php }} in a Neo4j 4.4 cluster"
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Populate .env
2525
run: |
2626
echo "PHP_VERSION=${{ matrix.php }}" > .env

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php: [8.1, 8.3]
16+
php: ['8.1', '8.3']
1717
env:
1818
PHP_VERSION: ${{ matrix.php }}
1919
CONNECTION: neo4j://neo4j:testtest@localhost:7687
2020
name: "Running on PHP ${{ matrix.php }} with a Neo4j 5.20-enterprise cluster"
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Populate .env
2525
run: |
2626
echo "PHP_VERSION=${{ matrix.php }}" > .env

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

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

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Populate .env
2222
run: |
2323
echo "PHP_VERSION=${{ matrix.php }}" > .env
@@ -46,11 +46,11 @@ jobs:
4646
runs-on: ubuntu-latest
4747
strategy:
4848
matrix:
49-
php: [8.1, 8.3]
49+
php: ['8.1', '8.3']
5050
name: "Running on PHP ${{ matrix.php }} with a Neo4j 5 instance connecting over all available protocols"
5151

5252
steps:
53-
- uses: actions/checkout@v2
53+
- uses: actions/checkout@v4
5454
- name: Populate .env
5555
run: |
5656
echo "PHP_VERSION=${{ matrix.php }}" > .env

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
name: "Lint & Analyse"
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
# Setup the correct PHP version globally
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.3.16'
21+
php-version: '8.3'
2222

2323
- name: Cache Composer dependencies
2424
uses: actions/cache@v2
@@ -29,7 +29,7 @@ jobs:
2929
- uses: php-actions/composer@v6
3030
with:
3131
progress: yes
32-
php_version: 8.3.16
32+
php_version: '8.3'
3333
version: 2
3434

3535
- name: "PHP-CS-Fixer"

.github/workflows/unit-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
name: "Running Unit Tests"
1515
strategy:
1616
matrix:
17-
php: ['8.1.31', '8.2.27', '8.3.16']
17+
php: ['8.1', '8.2', '8.3']
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Cache Composer dependencies
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: /tmp/composer-cache
2525
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
@@ -28,7 +28,7 @@ jobs:
2828
progress: yes
2929
php_version: ${{ matrix.php }}
3030
version: 2
31-
- uses: php-actions/phpunit@v3
31+
- uses: php-actions/phpunit@v4
3232
with:
3333
configuration: phpunit.xml.dist
3434
php_version: ${{ matrix.php }}

0 commit comments

Comments
 (0)