From e727e87f8baab9d9612024943543974f02726fcd Mon Sep 17 00:00:00 2001 From: Christian Fritsch Date: Wed, 27 May 2026 11:11:47 +0200 Subject: [PATCH 1/6] Update composer.json to remove symfony/yaml requirement Remove the version constraint for symfony/yaml. --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f3dbcda..d06c23a 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,7 @@ ], "require": { "php": ">=7.2", - "drupal/coder": "^8.3", - "symfony/yaml": "^3.4" + "drupal/coder": "^8.3" }, "config": { "allow-plugins": { From 61e554194aedfab6f9de51a793b0f51aaf5b644b Mon Sep 17 00:00:00 2001 From: Christian Fritsch Date: Wed, 27 May 2026 11:14:36 +0200 Subject: [PATCH 2/6] Rename tests.yml to test.yml --- .github/workflows/{tests.yml => test.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{tests.yml => test.yml} (100%) diff --git a/.github/workflows/tests.yml b/.github/workflows/test.yml similarity index 100% rename from .github/workflows/tests.yml rename to .github/workflows/test.yml From e59a13c26678e87bed16c2535ce6198a7c886887 Mon Sep 17 00:00:00 2001 From: Christian Fritsch Date: Wed, 27 May 2026 11:16:07 +0200 Subject: [PATCH 3/6] Upgrade actions/cache from v1 to v4 Updated cache action version for composer and npm dependencies. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d96243..c22623e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,7 +44,7 @@ jobs: sudo /etc/init.d/mysql start - name: Cache composer dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.composer/cache key: ${{ runner.os }}-composer-cache-${{ hashFiles('**/composer.json') }} @@ -82,7 +82,7 @@ jobs: sudo /etc/init.d/mysql start - name: Cache composer dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.composer/cache key: ${{ runner.os }}-composer-cache-${{ hashFiles('**/composer.json') }} @@ -90,7 +90,7 @@ jobs: - name: Cache NPM dependencies id: npm-cache - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-npm-cache From 9003c1940de9abb037d23d8987b92035dbc25ff6 Mon Sep 17 00:00:00 2001 From: Christian Fritsch Date: Wed, 27 May 2026 11:17:55 +0200 Subject: [PATCH 4/6] Upgrade upload and download artifact actions to v4 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c22623e..9e89753 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -110,7 +110,7 @@ jobs: run: cd /tmp; tar cfz build.tgz test; mv build.tgz ${GITHUB_WORKSPACE} - name: Upload build - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: build path: build.tgz @@ -139,7 +139,7 @@ jobs: echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH - name: Download build - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: build From 21668e5d1d4cac8d6c12094d590ab355cf7cb62d Mon Sep 17 00:00:00 2001 From: Christian Fritsch Date: Wed, 27 May 2026 11:20:55 +0200 Subject: [PATCH 5/6] Change PHP version to 8.3 and Drupal to 11.3 Updated PHP and Drupal versions for testing matrix. --- .github/workflows/test.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e89753..7cafc31 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,11 +24,8 @@ jobs: RUN: [1, 2] include: - RUN: 1 - DRUPAL_TESTING_DRUPAL_VERSION: '~10.0' - PHP_VERSION: '8.1' - - RUN: 2 - DRUPAL_TESTING_DRUPAL_VERSION: '~10.0' - PHP_VERSION: '8.2' + DRUPAL_TESTING_DRUPAL_VERSION: '~11.3' + PHP_VERSION: '8.4' steps: - uses: actions/checkout@v1 @@ -74,7 +71,7 @@ jobs: - uses: shivammathur/setup-php@v2 with: coverage: none - php-version: '8.1' + php-version: '8.3' extensions: gd, pdo_mysql - name: Start MySql service @@ -126,7 +123,7 @@ jobs: - uses: shivammathur/setup-php@v2 with: coverage: none - php-version: '8.1' + php-version: '8.3' extensions: gd, pdo_mysql - name: Start MySql service From 99ee8155363b87d95b15823f7f4461042000b2d6 Mon Sep 17 00:00:00 2001 From: Christian Fritsch Date: Wed, 27 May 2026 11:23:25 +0200 Subject: [PATCH 6/6] Update Drupal version in test workflow --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7cafc31..470b219 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: RUN: [1, 2] include: - RUN: 1 - DRUPAL_TESTING_DRUPAL_VERSION: '~11.3' + DRUPAL_TESTING_DRUPAL_VERSION: '~11.3.10' PHP_VERSION: '8.4' steps: