From 929a149c303b4cb719c81160fec42b50058a6f62 Mon Sep 17 00:00:00 2001 From: n <n@tourmentine.com> Date: Sun, 29 Dec 2024 10:42:16 +0100 Subject: [PATCH 1/3] CI: bump Markdown linter version to v19 --- .forgejo/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 35a7708..fc9596d 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 - name: Lint Markdown files - uses: actions/markdownlint-cli2-action@v17 + uses: actions/markdownlint-cli2-action@v19 with: globs: | **/*.md -- 2.48.1 From 3477a9bceb27c9acadcca64385e90fc2df6ee471 Mon Sep 17 00:00:00 2001 From: n <n@tourmentine.com> Date: Sun, 29 Dec 2024 11:03:03 +0100 Subject: [PATCH 2/3] CI: disable PHP version check for PHP-CS-Fixer --- .forgejo/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index fc9596d..8f18e6a 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -29,6 +29,6 @@ jobs: - name: Lint PHP files run: vendor/bin/phplint --no-cache --no-progress --exclude=vendor --verbose - name: PHP CS Fixer - run: vendor/bin/php-cs-fixer fix --dry-run --verbose --diff . + run: PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --verbose --diff . - run: echo "🍏 This job's status is ${{ job.status }}." -- 2.48.1 From 4e9e48e8c3268ce76376a90b3401a0e4363dc91b Mon Sep 17 00:00:00 2001 From: n <n@tourmentine.com> Date: Sun, 29 Dec 2024 12:17:39 +0100 Subject: [PATCH 3/3] PHP-CS-Fixer fix --- shaargem.php | 1 + 1 file changed, 1 insertion(+) diff --git a/shaargem.php b/shaargem.php index 6f7ad36..83b2391 100644 --- a/shaargem.php +++ b/shaargem.php @@ -1,4 +1,5 @@ <?php + /** * shaargem * -- 2.48.1