diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0189a238..105cafc8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: jobs: tests: name: "Tests ${{ matrix.php-version }} deps ${{ matrix.dependency-versions }}" - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 68746b66..7a42b56f 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -4,7 +4,7 @@ name: Static analysis jobs: phpstan: name: PHPStan - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout code @@ -30,7 +30,7 @@ jobs: php-cs-fixer: name: PHP-CS-Fixer - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout code @@ -53,7 +53,7 @@ jobs: psalm: name: Psalm - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v2 @@ -78,7 +78,7 @@ jobs: composer-normalize: name: Composer Normalize - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Setup PHP diff --git a/tests/IntegrationTest.php b/tests/IntegrationTest.php index 95548ce0..5023a185 100644 --- a/tests/IntegrationTest.php +++ b/tests/IntegrationTest.php @@ -345,6 +345,7 @@ public function provideLegacyRenderMultipleStimulusControllers() /** * @dataProvider provideLegacyRenderMultipleStimulusControllers + * * @legacy */ public function testLegacyRenderMultipleStimulusControllers($dataOrControllerName, array $controllerValues, string $expectedString, array $expectedArray) @@ -482,6 +483,7 @@ public function provideLegacyRenderMultipleStimulusAction(): \Generator /** * @dataProvider provideLegacyRenderMultipleStimulusAction + * * @legacy */ public function testLegacyRenderMultipleStimulusActions($dataOrControllerName, ?string $actionName, ?string $eventName, array $parameters, string $expectedString, array $expectedArray)