Skip to content

Commit a05758a

Browse files
committed
Updated workflows to 8.4, 8.5
1 parent 47d98c8 commit a05758a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
inputs:
1414
php-version:
1515
description: "The PHP version to use when running the job"
16-
default: "8.3"
16+
default: "8.4"
1717
required: false
1818
type: "string"
1919
composer-root-version:

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
php-version:
22-
- "8.3"
2322
- "8.4"
23+
- "8.5"
2424
dependencies:
2525
- "highest"
2626
- "lowest"

.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
steps:
1919
- uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.3'
21+
php-version: '8.4'
2222

2323
- uses: actions/checkout@v2
2424

test/Feature/Type/JsonTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function testSerializeFails(): void
6060
$this->expectException(Error::class);
6161

6262
$jsonType = new Json();
63-
$jsonType->serialize(["name" => "\xB1\x31"]);
63+
$jsonType->serialize(['name' => "\xB1\x31"]);
6464
}
6565

6666
public function testContains(): void

0 commit comments

Comments
 (0)