diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bb8024..cb1d809 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: experimental: true steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: docker compose -f docker-compose.yml pull --include-deps drupal - name: Build the docker compose stack run: docker compose -f docker-compose.yml build --pull --build-arg BASE_IMAGE_TAG=${{ matrix.drupal_version }} drupal @@ -53,7 +53,7 @@ jobs: experimental: true steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: docker compose -f docker-compose.yml pull --include-deps drupal - name: Build the docker compose stack run: docker compose -f docker-compose.yml build --pull --build-arg BASE_IMAGE_TAG=${{ matrix.drupal_version }} drupal @@ -78,7 +78,7 @@ jobs: module: ['entity_to_text'] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - run: docker compose -f docker-compose.yml pull --include-deps drupal diff --git a/.github/workflows/styles.yml b/.github/workflows/styles.yml index 98e30a4..2b9ed13 100644 --- a/.github/workflows/styles.yml +++ b/.github/workflows/styles.yml @@ -12,7 +12,7 @@ jobs: php-version: '8.3' extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv tools: cs2pr, composer:v2 - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: composer install --prefer-dist - run: ./vendor/bin/phpcs ./ --report=checkstyle | cs2pr @@ -26,7 +26,7 @@ jobs: php-version: '8.3' extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv tools: cs2pr, composer:v2, phpmd - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: composer install --prefer-dist - run: phpmd ./ text ./phpmd.xml --suffixes php,module,inc,install,test,profile,theme,css,info,txt --exclude *Test.php,*vendor/* @@ -40,7 +40,7 @@ jobs: php-version: '8.3' extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv tools: cs2pr, composer:v2, phpcpd - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: composer install --prefer-dist - run: phpcpd ./src --suffix .php --suffix .module --suffix .inc --suffix .install --suffix .test --suffix .profile --suffix .theme --suffix .css --suffix .info --suffix .txt --exclude *.md --exclude *.info.yml --exclude tests --exclude vendor/ @@ -48,7 +48,7 @@ jobs: name: PhpDeprecationDetector (phpdd) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: docker compose -f docker-compose.yml pull --include-deps drupal - name: Build the docker compose stack run: docker compose -f docker-compose.yml build drupal