From 244e53700f07b1f71ed2ef38f4810d4c1c00dcb2 Mon Sep 17 00:00:00 2001 From: Eduardo Rodrigues Date: Tue, 26 Aug 2025 11:34:35 +0200 Subject: [PATCH 1/2] Update pre-commit-hooks --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index be1bcef28..942c720aa 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: types_or: ["markdown"] exclude: '(organization/_posts/2016/.*)|(organization/_posts/2017/.*)|(organization/_posts/2018/.*)|(organization/_posts/2019/.*)|(organization/_posts/2020/.*)|(organization/_posts/2021/.*)|(organization/_posts/2022/.*)' - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: check-json - id: check-yaml From 36e298c83775f47e1790bf8d71dac1b9681cebdb Mon Sep 17 00:00:00 2001 From: Eduardo Rodrigues Date: Tue, 26 Aug 2025 11:42:32 +0200 Subject: [PATCH 2/2] Update the link checker (old hook was deprecated) --- .github/workflows/README.md | 2 +- .github/workflows/link_check.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 00c10150a..b20f60e69 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -7,7 +7,7 @@ action file. The underlying checker is from Tom Cort, [markdown-link-check](https://github.com/tcort/markdown-link-check). This -is wrapped by Gaurav Nelson's [github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check). +is wrapped in [github-action-markdown-link-check](https://github.com/tcort/github-action-markdown-link-check). Note this checker checks markdown files directly, thus it will not check any links in `html` files on the site. To deal with the fact that Jekyll builds the site diff --git a/.github/workflows/link_check.yaml b/.github/workflows/link_check.yaml index 33d1552b1..531c45e42 100644 --- a/.github/workflows/link_check.yaml +++ b/.github/workflows/link_check.yaml @@ -18,7 +18,7 @@ jobs: - name: Jekyll Build run: bundler exec jekyll build - name: Check Links - uses: gaurav-nelson/github-action-markdown-link-check@v1 + uses: tcort/github-action-markdown-link-check@v1 with: config-file: '.github/config/mdcheck.json' check-modified-files-only: 'yes'