From 516d823c964f95cc324e3ec83d4bc632499a51a1 Mon Sep 17 00:00:00 2001 From: Jurriaan Roelofs Date: Wed, 26 Nov 2025 13:55:17 +0100 Subject: [PATCH] Fix CI: Use docker compose v2 syntax GitHub Actions runners no longer include docker-compose v1 standalone binary. Update to docker compose v2 plugin syntax (without hyphen). Also update actions/checkout from v2 to v4. Fixes #668 --- .github/workflows/review.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/review.yaml b/.github/workflows/review.yaml index 82af16333..f5f0e1265 100644 --- a/.github/workflows/review.yaml +++ b/.github/workflows/review.yaml @@ -10,11 +10,11 @@ jobs: drupal-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Lint Drupal run: | - TARGET_DRUPAL_CORE_VERSION=$TARGET_DRUPAL_CORE_VERSION docker-compose run --rm drupal-lint + TARGET_DRUPAL_CORE_VERSION=$TARGET_DRUPAL_CORE_VERSION docker compose run --rm drupal-lint # eslint: # runs-on: ubuntu-latest