From 7da5f49e0da0db234e138e76ebc39362dbdf0ecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Roll=C3=A9n?= Date: Mon, 19 May 2025 13:23:40 -0400 Subject: [PATCH 1/2] Update CI to use Ubuntu 24 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2e7a577..43479b0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ on: [push] jobs: linters: name: Markdown linting - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Checkout repository @@ -25,4 +25,4 @@ jobs: run: npx markdownlint *.md --config="config/lint.json" - name: Run spell check - run: npx mdspell *.md --en-us --ignore-numbers --ignore-acronyms --report \ No newline at end of file + run: npx mdspell *.md --en-us --ignore-numbers --ignore-acronyms --report From cf51b803027263896abedcc379c74c41e4c7c834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Roll=C3=A9n?= Date: Wed, 21 May 2025 09:42:33 -0400 Subject: [PATCH 2/2] Update to node 16 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 43479b0..2c9c795 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 with: - node-version: '14' + node-version: '16' - name: Install dependencies run: npm install markdownlint-cli