diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c72505..9c5cadf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: experimental: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - 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 @@ -50,7 +50,7 @@ jobs: experimental: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - 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: ['bamboo_twig'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - 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 814dc03..c73ae00 100644 --- a/.github/workflows/styles.yml +++ b/.github/workflows/styles.yml @@ -12,7 +12,7 @@ jobs: php-version: '8.1' extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv tools: cs2pr, composer:v2 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: composer install --prefer-dist - run: ./vendor/bin/phpcs ./ --report=checkstyle | cs2pr @@ -26,7 +26,7 @@ jobs: php-version: '8.1' extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv tools: cs2pr, composer:v2, phpmd - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - 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.1' extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv tools: cs2pr, composer:v2, phpcpd - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - 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@v4 + - uses: actions/checkout@v5 - 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