From ef1745baeaa2e490d0908bc0c8231fb0edff571c Mon Sep 17 00:00:00 2001 From: Neil Daniels Date: Fri, 30 Jan 2026 11:48:15 -0800 Subject: [PATCH 1/2] Update to Github workflow versions --- .github/workflows/coding-standards.yml | 4 ++- .github/workflows/continuous-integration.yml | 35 ++++---------------- .github/workflows/static-analysis.yml | 4 +++ 3 files changed, 14 insertions(+), 29 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 8c69385b..d55d8f88 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -5,12 +5,14 @@ on: ["pull_request"] jobs: coding-standards: name: "Coding Standards" - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-latest" strategy: matrix: php-version: - "7.4" + - "8.0" + - "8.5" steps: - name: "Checkout" diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 349b15fd..c9665c78 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -8,7 +8,7 @@ env: jobs: phpunit: name: "PHPUnit" - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-latest" strategy: matrix: @@ -16,39 +16,18 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" + - "8.3" + - "8.4" + - "8.5" deps: - "normal" + - "low" + - "dev" symfony-require: - "" symfony-deprecations-helper: - "" - include: - - php-version: "7.4" - deps: "normal" - - - php-version: "7.4" - deps: "low" - - - php-version: "7.4" - deps: "dev" - - - php-version: "8.0" - deps: "normal" - - - php-version: "8.0" - deps: "low" - - - php-version: "8.0" - deps: "dev" - - - php-version: "8.1" - deps: "normal" - - - php-version: "8.1" - deps: "low" - - - php-version: "8.1" - deps: "dev" steps: - name: "Checkout" diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 21edc6b6..b84792ac 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -13,6 +13,10 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" + - "8.3" + - "8.4" + - "8.5" steps: - name: "Checkout code" From f6058acd72165915fd86f90358b4367ac5a2a13f Mon Sep 17 00:00:00 2001 From: Neil Daniels Date: Fri, 30 Jan 2026 11:51:41 -0800 Subject: [PATCH 2/2] Update cache action --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index d55d8f88..65ce28d5 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -28,7 +28,7 @@ jobs: tools: "cs2pr" - name: "Cache dependencies installed with Composer" - uses: "actions/cache@v2" + uses: "actions/cache@v5" with: path: "~/.composer/cache" key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}" diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index c9665c78..ea26c29c 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -41,7 +41,7 @@ jobs: php-version: "${{ matrix.php-version }}" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v2" + uses: "actions/cache@v5" with: path: "~/.composer/cache" key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}"