From 0696e65d69e1a5bcde6e69e4bd20661b6472d9d3 Mon Sep 17 00:00:00 2001
From: n <n@tourmentine.com>
Date: Sun, 29 Dec 2024 10:41:34 +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 bf457bb..1caeac4 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 b37a76e0651bcae9e12104d96a55d1b092b77469 Mon Sep 17 00:00:00 2001
From: n <n@tourmentine.com>
Date: Sun, 29 Dec 2024 10:50:45 +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 1caeac4..f77c532 100644
--- a/.forgejo/workflows/lint.yml
+++ b/.forgejo/workflows/lint.yml
@@ -29,5 +29,5 @@ 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 82a001e9d95f2c3c25a57aff37d7e741b82c1b50 Mon Sep 17 00:00:00 2001
From: n <n@tourmentine.com>
Date: Sun, 29 Dec 2024 10:59:45 +0100
Subject: [PATCH 3/3] markdownlist fix

---
 clickat.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/clickat.php b/clickat.php
index 6ce3efe..1381f3d 100644
--- a/clickat.php
+++ b/clickat.php
@@ -1,4 +1,5 @@
 <?php
+
 /**
  * ClickAt
  *
-- 
2.48.1