From 606933e800942df68b6c26ef12b7b65b771139bf Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 11:16:39 +1000 Subject: [PATCH 01/24] update actions/github-script to v7 --- .github/workflows/branches.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/branches.yml b/.github/workflows/branches.yml index 5b3dede5ffb..f9fddb4a8d7 100644 --- a/.github/workflows/branches.yml +++ b/.github/workflows/branches.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Comment on pull request - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const {issue:{number:issue_number}, repo:{owner, repo}} = context From 2437fc6dd71cfb77818be6babb75864284afc304 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 11:17:44 +1000 Subject: [PATCH 02/24] update actions/checkout to v4 --- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/clean.yml | 2 +- .github/workflows/examples.presets.yml | 2 +- .github/workflows/examples.yml | 4 ++-- .github/workflows/stale.yml | 2 +- .github/workflows/test.presets.yml | 2 +- .github/workflows/test.yml | 6 +++--- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5428dd7123f..e7e1091b1eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: if: always() && (needs.build-test-analyze.result == 'success' || needs.build-test-analyze.result == 'skipped') steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Checkout master @@ -47,7 +47,7 @@ jobs: needs: [ format ] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup NodeJS @@ -70,7 +70,7 @@ jobs: needs: [ update-indexes ] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup NodeJS @@ -93,7 +93,7 @@ jobs: needs: [ update-indexes ] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Login to GitHub registry run: echo ${{ github.token }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin - name: Build docker image @@ -178,7 +178,7 @@ jobs: if: contains(github.event.head_commit.message, '[release]') steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Login to GitHub registry run: echo ${{ github.token }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin - name: Pull docker image (master) @@ -203,7 +203,7 @@ jobs: needs: [ docker-release ] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup NodeJS @@ -256,7 +256,7 @@ jobs: needs: [ action-latest-test, deploy-latest ] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup NodeJS uses: actions/setup-node@v3 with: diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml index c7bed12a577..6eddacdcfe7 100644 --- a/.github/workflows/clean.yml +++ b/.github/workflows/clean.yml @@ -13,7 +13,7 @@ jobs: continue-on-error: true steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run script run: ./delete_ghcr_dangling_images.sh lowlighter metrics working-directory: .github/actions/ghcr-clean diff --git a/.github/workflows/examples.presets.yml b/.github/workflows/examples.presets.yml index 77f8a72a72a..6a92df2ee4e 100644 --- a/.github/workflows/examples.presets.yml +++ b/.github/workflows/examples.presets.yml @@ -10,7 +10,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup NodeJS diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index b391f4a7544..de137c7df77 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -43,7 +43,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Checkout examples @@ -1325,7 +1325,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Checkout examples diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index bbc174e6ca4..79ab3cb1cfd 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -40,7 +40,7 @@ jobs: continue-on-error: true steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run script run: ./delete_workflows.sh lowlighter/metrics working-directory: .github/actions/ghcr-clean diff --git a/.github/workflows/test.presets.yml b/.github/workflows/test.presets.yml index f9c867a37bd..66bfef3b6a5 100644 --- a/.github/workflows/test.presets.yml +++ b/.github/workflows/test.presets.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: master diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c8a1bc18e3..a72aa27b8fd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup NodeJS @@ -36,7 +36,7 @@ jobs: needs: [ lint ] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Format code with dprint run: | npm install -g dprint @@ -58,7 +58,7 @@ jobs: needs: [ lint ] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup CodeQL uses: github/codeql-action/init@v2 with: From 8db9e3058b0b9fbcb2d7ed357386de31f9a944c0 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 11:20:22 +1000 Subject: [PATCH 03/24] update actions/setup-node to v4 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/examples.presets.yml | 2 +- .github/workflows/test.presets.yml | 2 +- .github/workflows/test.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7e1091b1eb..e5eecbb4c24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: with: fetch-depth: 0 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Pull changes @@ -74,7 +74,7 @@ jobs: with: fetch-depth: 0 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Pull @@ -258,7 +258,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Setup metrics diff --git a/.github/workflows/examples.presets.yml b/.github/workflows/examples.presets.yml index 6a92df2ee4e..20a8dca6fe6 100644 --- a/.github/workflows/examples.presets.yml +++ b/.github/workflows/examples.presets.yml @@ -14,7 +14,7 @@ jobs: with: fetch-depth: 0 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Setup metrics diff --git a/.github/workflows/test.presets.yml b/.github/workflows/test.presets.yml index 66bfef3b6a5..de262ec50c8 100644 --- a/.github/workflows/test.presets.yml +++ b/.github/workflows/test.presets.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 0 ref: master - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Setup metrics diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a72aa27b8fd..f14983f2cb7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: with: fetch-depth: 0 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Setup metrics From 7395222ce09bd11bce54e20440e0c99ee8179b65 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 12:04:53 +1000 Subject: [PATCH 04/24] updated actions/labeler to v5 & added ci labels --- .github/config/label.yml | 249 +++++++++++++++++++++++++++++------- .github/workflows/label.yml | 2 +- 2 files changed, 205 insertions(+), 46 deletions(-) diff --git a/.github/config/label.yml b/.github/config/label.yml index 1d10a5dc423..37d001970ee 100644 --- a/.github/config/label.yml +++ b/.github/config/label.yml @@ -1,92 +1,251 @@ + 📊 metrics embed: - - source/app/action/** - - source/app/web/** + - changed-files: + - any-glob-to-any-file: + - source/app/action/** + - source/app/web/** + ✨ metrics insights: - - source/app/web/statics/insights/** + - changed-files: + - any-glob-to-any-file: + - source/app/web/statics/insights/** 🧩 plugins: - - source/plugins/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/** + 🖼️ templates: - - source/templates/** + - changed-files: + - any-glob-to-any-file: + - source/templates/** 🗃️ base: - - source/plugins/base/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/base/** + 🧱 core: - - source/app/metrics/** - - source/plugins/core/** + - changed-files: + - any-glob-to-any-file: + - source/app/metrics/** + - source/plugins/core/** + +🚀 ci: + - changed-files: + - any-glob-to-any-file: + - .github/** + +⚙️ ci config: + - changed-files: + - any-glob-to-any-file: + - .github/config/** + - .github/ISSUE_TEMPLATE/** + - .github/FUNDING.yml + - .github/pull_request_template.md + +🦾 ci actions: + - changed-files: + - any-glob-to-any-file: + - .github/actions/** + +🦿 ci scripts: + - changed-files: + - any-glob-to-any-file: + - .github/scripts/** + +🖨️ ci docs: + - changed-files: + - any-glob-to-any-file: + - .github/readme/** + - .github/**/examples.yml + - .github/**/*.md + - '!.github/pull_request_template.md' + - .github/architecture.svg + - .github/scripts/markdown_example.mjs + - .github/scripts/presets_example.mjs 🎲 community plugins: - - source/plugins/community/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/community/** 🏆 plugin achievements: - - source/plugins/achievements/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/achievements/** 📰 plugin activity: - - source/plugins/activity/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/activity/** + 🌸 plugin anilist: - - source/plugins/anilist/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/anilist/** + 📆 plugin calendar: - - source/plugins/calendar/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/calendar/** + ♐ plugin code: - - source/plugins/code/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/code/** + 🏅 plugin contributors: - - source/plugins/contributors/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/contributors/** + 💬 plugin discussions: - - source/plugins/discussions/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/discussions/** + 🎟️ plugin followup: - - source/plugins/followup/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/followup/** + 🎫 plugin gists: - - source/plugins/gists/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/gists/** + 💡 plugin habits: - - source/plugins/habits/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/habits/** + 🙋 plugin introduction: - - source/plugins/introduction/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/introduction/** + 📅 plugin isocalendar: - - source/plugins/isocalendar/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/isocalendar/** + 🈷️ plugin languages: - - source/plugins/languages/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/languages/** + 🗳️ plugin leetcode: - - source/plugins/leetcode/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/leetcode/** + 📜 plugin licenses: - - source/plugins/licenses/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/licenses/** + 👨‍💻 plugin lines: - - source/plugins/lines/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/lines/** + 🎼 plugin music: - - source/plugins/music/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/music/** + 🎩 plugin notable: - - source/plugins/notable/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/notable/** + ⏱️ plugin pagespeed: - - source/plugins/pagespeed/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/pagespeed/** + 🧑‍🤝‍🧑 plugin people: - - source/plugins/people/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/people/** + ✒️ plugin posts: - - source/plugins/posts/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/posts/** + 🗂️ plugin projects: - - source/plugins/projects/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/projects/** + 🎭 plugin reactions: - - source/plugins/reactions/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/reactions/** + 📓 plugin repositories: - - source/plugins/repositories/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/repositories/** + 🗼 plugin rss: - - source/plugins/rss/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/rss/** + 🌇 plugin skyline: - - source/plugins/skyline/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/skyline/** + 💕 plugin sponsors: - - source/plugins/sponsors/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/sponsors/** + 🗨️ plugin stackoverflow: - - source/plugins/stackoverflow/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/stackoverflow/** + ✨ plugin stargazers: - - source/plugins/stargazers/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/stargazers/** + 💫 plugin starlists: - - source/plugins/starlists/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/starlists/** + 🌟 plugin stars: - - source/plugins/stars/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/stars/** + 💭 plugin support: - - source/plugins/support/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/support/** + 📌 plugin topics: - - source/plugins/topics/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/topics/** + 🧮 plugin traffic: - - source/plugins/traffic/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/traffic/** + 🐤 plugin tweets: - - source/plugins/tweets/** + - changed-files: + - any-glob-to-any-file: + - source/plugins/tweets/** + ⏰ plugin wakatime: - - source/plugins/wakatime/** \ No newline at end of file + - changed-files: + - any-glob-to-any-file: + - source/plugins/wakatime/** + diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 80c8c77c882..a5f0a72d7a7 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -7,7 +7,7 @@ jobs: name: Label issue and pull requests runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" configuration-path: .github/config/label.yml From 83199759b2590fc4fc9a4d2cfee132a5b502ef8a Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 12:07:15 +1000 Subject: [PATCH 05/24] updated check-spelling/check-spelling to v0.0.25 --- .github/workflows/spelling.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index b587d178b8f..431141a76b8 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -48,7 +48,7 @@ jobs: steps: - name: check-spelling id: spelling - uses: check-spelling/check-spelling@v0.0.20 + uses: check-spelling/check-spelling@v0.0.25 with: experimental_apply_changes_via_bot: ${{ github.repository_owner != 'lowlighter' && 1 || 0 }} suppress_push_for_open_pull_request: 1 @@ -74,7 +74,7 @@ jobs: if: (success() || failure()) && needs.spelling.outputs.followup steps: - name: comment - uses: check-spelling/check-spelling@v0.0.20 + uses: check-spelling/check-spelling@v0.0.25 with: checkout: true task: ${{ needs.spelling.outputs.followup }} @@ -97,7 +97,7 @@ jobs: cancel-in-progress: false steps: - name: apply spelling updates - uses: check-spelling/check-spelling@v0.0.20 + uses: check-spelling/check-spelling@v0.0.25 with: experimental_apply_changes_via_bot: ${{ github.repository_owner != 'lowlighter' && 1 || 0 }} checkout: true From 9568a1976c2c7550af65d17dbbac7831291ef41e Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 12:09:15 +1000 Subject: [PATCH 06/24] updated actions/stale to v9 --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 79ab3cb1cfd..cd0c6adceab 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,7 +10,7 @@ jobs: name: Flag stale issues and pull requests runs-on: ubuntu-latest steps: - - uses: actions/stale@v6 + - uses: actions/stale@v9 with: days-before-stale: -1 stale-pr-message: This pull request seems to be inactive and will be automatically closed in a few days if it remains without any activity. From 22d8aefde5fac667b633fd100bf16ec1ba0ebd44 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 12:12:13 +1000 Subject: [PATCH 07/24] updated dessant/lock-threads to v5 --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index cd0c6adceab..3af2e98dfda 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -25,7 +25,7 @@ jobs: - stale runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v4 + - uses: dessant/lock-threads@v5 with: github-token: ${{ github.token }} issue-inactive-days: 180 From a0530a834dba9e301023e91c4eb481db75c493d0 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 12:14:17 +1000 Subject: [PATCH 08/24] missed 2 instances of actions/checkout@v3 --- .github/scripts/files/examples.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/files/examples.yml b/.github/scripts/files/examples.yml index a1cb0591bd6..927c0980dfd 100644 --- a/.github/scripts/files/examples.yml +++ b/.github/scripts/files/examples.yml @@ -43,7 +43,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Checkout examples @@ -80,7 +80,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Checkout examples From 9ef835c8fc87f40e8b94c2dad4096b8b3cb6b805 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 12:15:41 +1000 Subject: [PATCH 09/24] missed 1 instances of actions/setup-node@v3 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5eecbb4c24..df7c99a39be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -207,7 +207,7 @@ jobs: with: fetch-depth: 0 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Setup metrics From 9117cf1f48c93e1ab5a37d59790cfe0a0ad65b7f Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 13:05:43 +1000 Subject: [PATCH 10/24] undo changes to .github/scripts/files/examples.yml --- .github/scripts/files/examples.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/files/examples.yml b/.github/scripts/files/examples.yml index 927c0980dfd..a1cb0591bd6 100644 --- a/.github/scripts/files/examples.yml +++ b/.github/scripts/files/examples.yml @@ -43,7 +43,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Checkout examples @@ -80,7 +80,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Checkout examples From b54f55e79aa96984d5a2ee206186ca333f5003d9 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 13:06:52 +1000 Subject: [PATCH 11/24] add myself to "Repository level file" changers list --- tests/ci.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci.test.js b/tests/ci.test.js index 02c21c7e1f8..2373cb78e5a 100644 --- a/tests/ci.test.js +++ b/tests/ci.test.js @@ -19,7 +19,7 @@ describe("Check file changes (checkout your files if needed)", () => { ".github/workflows/examples.yml", ".github/readme/partials/documentation/compatibility.md", ])("%s", async file => expect((await diff()).includes(file)).toBe(false))) - if (!["lowlighter"].includes(process.env.PR_AUTHOR)) { + if (!["lowlighter","mikey-"].includes(process.env.PR_AUTHOR)) { describe("Repository level files were not modified", () => void test.each([ ".github/config/*", From 22e3a9e346dc6b0d0e1080dc8b890ae6b5e2c55a Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 13:09:29 +1000 Subject: [PATCH 12/24] undo changes to .github/workflows/examples.yml --- .github/workflows/examples.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index de137c7df77..b391f4a7544 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -43,7 +43,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Checkout examples @@ -1325,7 +1325,7 @@ jobs: if: "github.repository == 'lowlighter/metrics'" steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Checkout examples From 197c19d249d363502b54d927e9a226abd1fa58ea Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 13:25:22 +1000 Subject: [PATCH 13/24] see https://github.com/lowlighter/metrics/pull/1715#pullrequestreview-2816097223 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3ff5209a48a..2f50cde6cfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN chmod +x /metrics/source/app/action/index.mjs \ # Install latest chrome dev package, fonts to support major charsets and skip chromium download on puppeteer install # Based on https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker && apt-get update \ - && apt-get install -y wget gnupg ca-certificates libgconf-2-4 \ + && apt-get install -y xz-utils wget gnupg ca-certificates libgconf-2-4 \ && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ && apt-get update \ From 5bff23f261eded35397c7178ea2f696a6ef8e9e8 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 14:31:34 +1000 Subject: [PATCH 14/24] updated cpell dictionaries --- .github/workflows/spelling.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index 431141a76b8..b74b383a851 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -54,6 +54,10 @@ jobs: suppress_push_for_open_pull_request: 1 checkout: true post_comment: 0 + dictionary_source_prefixes: > + { + "cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20241114/dictionaries/" + } extra_dictionaries: cspell:html/html.txt cspell:filetypes/filetypes.txt @@ -62,7 +66,9 @@ jobs: cspell:django/django.txt cspell:npm/npm.txt cspell:aws/aws.txt - check_extra_dictionaries: '' + cspell:software-terms/software-terms.txt + check_extra_dictionaries: true + extra_dictionary_limit: 20 comment: name: Report From 433fb57ef376c3380720b9aa691e4c729e0008b2 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 16:02:51 +1000 Subject: [PATCH 15/24] added many extra dictionaries --- .github/workflows/spelling.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index b74b383a851..d591fd74ce7 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -59,6 +59,7 @@ jobs: "cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20241114/dictionaries/" } extra_dictionaries: + cspell/cpp/cpp.txt cspell:html/html.txt cspell:filetypes/filetypes.txt cspell:css/css.txt @@ -67,8 +68,17 @@ jobs: cspell:npm/npm.txt cspell:aws/aws.txt cspell:software-terms/software-terms.txt + cspell:cryptocurrencies/cryptocurrencies.txt + cspell:cryptocurrencies/crypto-terms.txt + cspell:en_AU/src/aoo-mozilla-en-dict/en_AU.dic + cspell:en_CA/src/aoo-mozilla-en-dict/en_CA.dic + cspell:en_GB/src/aoo-mozilla-en-dict/en-GB.dic + cspell:en_US/src/aoo-mozilla-en-dict/en_US.dic + cspell:en_shared/shared-additional-words.txt + cpell:en_US/src/aoo-mozilla-en-dict/wordlist_kevin_en_US_20201207_123679w.txt + cspell:en_US/acronyms.txt check_extra_dictionaries: true - extra_dictionary_limit: 20 + extra_dictionary_limit: 50 comment: name: Report From c947505f0e9c7961a5c882fda2c6c97e155ba85d Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 16:05:07 +1000 Subject: [PATCH 16/24] the allow list grows --- .github/actions/spelling/allow.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index e4d5df47c2f..864abfb5f6d 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -44,3 +44,15 @@ xticks yargsparser yticked webtoken +bitcoin +coingecko +dajneem +emojis +eur +identicons +jpy +mikey +octokits +twemojis +upvotes +usd \ No newline at end of file From 7ff48e70c449bb23985e3bda3fa19e618a0e37e8 Mon Sep 17 00:00:00 2001 From: Mikey Battiston Date: Thu, 5 Jun 2025 06:08:20 +0000 Subject: [PATCH 17/24] [check-spelling] Update metadata Update for https://github.com/mikey-/metrics/actions/runs/15459707849/attempts/1 Accepted in https://github.com/mikey-/metrics/pull/3#issuecomment-2942894076 Signed-off-by: check-spelling-bot on-behalf-of: @check-spelling --- .github/actions/spelling/excludes.txt | 9 +-- .github/actions/spelling/expect.txt | 96 ++++++++++++++++++++++----- 2 files changed, 86 insertions(+), 19 deletions(-) diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index 0900304ea4e..ad6d68ef573 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -4,7 +4,6 @@ (?:^|/)go\.sum$ (?:^|/)package(?:-lock|)\.json$ (?:^|/)vendor/ -ignore$ \.a$ \.ai$ \.avi$ @@ -47,13 +46,15 @@ ignore$ ^\.github/actions/spelling/ ^\Q.github/readme/partials/documentation/inspirations.md\E$ ^\Q.github/workflows/spelling.yml\E$ -^source/plugins/community/splatoon/ ^\Qsource/plugins/sponsors/index.mjs\E$ ^\Qsource/plugins/stargazers/worldmap/atlas/50m_countries.geojson\E$ ^\Qsource/templates/classic/partials/splatoon.ejs\E$ ^\Qsource/templates/markdown/example.md\E$ ^\Qsource/templates/terminal/fonts.css\E$ ^\Qsource/templates/terminal/partials/screenshot.ejs\E$ -^\Qtests/mocks/api/github/rest/emojis/get.mjs\E$ ^\Qtests/mocks/api/axios/get/lichess.mjs\E$ -^\Qtests/mocks/api/axios/get/steam.mjs\E$ \ No newline at end of file +^\Qtests/mocks/api/axios/get/steam.mjs\E$ +^\Qtests/mocks/api/github/rest/emojis/get.mjs\E$ +^source/plugins/community/splatoon/ +^source/templates/classic/fonts\.css$ +ignore$ diff --git a/.github/actions/spelling/expect.txt b/.github/actions/spelling/expect.txt index 0c3e2fbf0b2..bfe09d5b9a3 100644 --- a/.github/actions/spelling/expect.txt +++ b/.github/actions/spelling/expect.txt @@ -6,22 +6,31 @@ amd anilist apidojo apostrophecms +args argv +Arial arobase asi +attr audioscrobbler +autocomplete Autoloaded automator +autosize +axios backreference Bizau blankslate +blockquote blog brackethighlighter btn +busybox cacheable cakeday captcha -charsets +charset +checkbox chmod chown chrisbottin @@ -31,13 +40,21 @@ codelines codemirror codeql colorsets +colspan +Compat +concat Consolas coord +cron csso CVE cwd +dasharray +dashoffset datapoints +datetime dded +denoland dependabot deployer deps @@ -48,15 +65,18 @@ dflag diffs diffstat dirname +DOCTYPE domcontentloaded DOUBLEDOWN DOUBLEUP downvotes dprint +dropdown dryrun dto ecma Edg +ejs eleased eleted emails @@ -69,8 +89,10 @@ entrypoint eopened eqeqeq erged +eslint esm eugeneware +evenodd eviewed expr expressjs @@ -82,19 +104,23 @@ favourites FEmusic filesize filesloop +filesystem Firefox firstname -Fnc foliojs forkee FORTYFIVEDOWN FORTYFIVEUP +frameborder freefont fss FTg fullyear +func gemoji -geocodes +geocode +geocoding +geojson geopath getrecenttracks gettopartists @@ -103,19 +129,20 @@ ghactions ghcr ghquery gifencoder -gionkunz Gister githubs githubusercontent gitted globals Gmap -gnupg gnuplot Gollum google +googleapis googlechrome +googlemaps gpg +grayscale grep guttermarker hackernews @@ -127,6 +154,7 @@ highalert highlighter homepage honzaap +href htmlescape htmlsanitize htmlunescape @@ -134,8 +162,9 @@ hubot hyperlinks identicon ies -iframes +iframe imagga +img imgb indepth infographics @@ -153,9 +182,12 @@ isocalendar itemprop itunes jellyfin +jsdom jshemas kacst +keyframes keyup +KHTML Kotlin largeable lastfm @@ -163,25 +195,23 @@ lastname leaderboard lecoq legoandmars -libgconf -libssl -libx libxml libxmljs libxss -libxtst lichess +linecap +linejoin linux lng localhost localstorage logline +lorem losed lovell lowalert lowercased lowlighter -lsb lstat mangas markedjs @@ -194,13 +224,16 @@ mbid mde mergeability mergeable -middlewares +middleware +minimatch mkdir mockresize mozilla MSFT +multiline myplugin myquery +nbsp ncal networkidle newplugin @@ -212,7 +245,10 @@ NOASSERTION nocase nodeca nodejs +noreply notoken +nowrap +npm octicon OCTO octocat @@ -227,17 +263,21 @@ orked pageerror pagespeed pagespeedonline -panosoft params patchnote pdated pened PGP +pkgx +pkgxdev +placeholders playcount playlists plugin +polyfill poopmap practicaldev +prebuilt prettylights previewable prismjs @@ -247,6 +287,7 @@ puppeteergif purgecss pwa qmake +quickstart rankeds rapidapi ratelimit @@ -255,28 +296,36 @@ rbmok rbren rcopy readdir +readline readme readonly reated recenttracks regexp +rgb +rgba rlreset +rowspan rssi runsh SAPISID SAPISIDHASH scorecalc screenshots +scrollbar SDKs Segoe selfhosted +semver seo Serializer sgit sgv shipit shm +sidenav SIGKILL +signup SINGLEDOWN SINGLEUP sourced @@ -285,6 +334,8 @@ spams spdx sponsorable spotify +src +srcset stackexchange stackoverflow stagazers @@ -296,11 +347,14 @@ stdio stdout steveukx streamable +stringify stripemojis stroustrup +stylesheet sublimelinter substr sudo +svgo sysadmin systemctl systemd @@ -310,9 +364,11 @@ testapp testcase Thu timeline +timezone tlwg tmpdir todo +tooltip topartists toptracks tracklist @@ -320,6 +376,7 @@ transfonter trollface TSLA twemoji +typeof uapi uconf uid @@ -328,19 +385,24 @@ Unconfigured undef underlinenav Unescape +Unicode upcase upvote urgenthighalert urgentlowalert uri urlencoded +urls URLTo usermod -usernames +username ushed usr +utc utf +utils utm +validator vercel vnd vuejs @@ -348,6 +410,7 @@ waifus wakapi wakatime wasm +webkit webserver websites wget @@ -361,10 +424,13 @@ WORKDIR worldmap wqy wsl -xcb +www Xcode xkcd +xlink xmlformat +xmlns +yargs ycombinator ymd yoda From 888fc9262c311ccf1254f8ec82a2d1a202165938 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 16:13:08 +1000 Subject: [PATCH 18/24] removed excessive extra dictionaries --- .github/workflows/spelling.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index d591fd74ce7..67561e8cb97 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -68,15 +68,6 @@ jobs: cspell:npm/npm.txt cspell:aws/aws.txt cspell:software-terms/software-terms.txt - cspell:cryptocurrencies/cryptocurrencies.txt - cspell:cryptocurrencies/crypto-terms.txt - cspell:en_AU/src/aoo-mozilla-en-dict/en_AU.dic - cspell:en_CA/src/aoo-mozilla-en-dict/en_CA.dic - cspell:en_GB/src/aoo-mozilla-en-dict/en-GB.dic - cspell:en_US/src/aoo-mozilla-en-dict/en_US.dic - cspell:en_shared/shared-additional-words.txt - cpell:en_US/src/aoo-mozilla-en-dict/wordlist_kevin_en_US_20201207_123679w.txt - cspell:en_US/acronyms.txt check_extra_dictionaries: true extra_dictionary_limit: 50 From e3ee44d9ddb27ed82e510558b6976acf6db23330 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 16:15:52 +1000 Subject: [PATCH 19/24] sync-labels is boolean --- .github/actions/spelling/allow.txt | 2 +- .github/workflows/label.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index 864abfb5f6d..f640c409a73 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -55,4 +55,4 @@ mikey octokits twemojis upvotes -usd \ No newline at end of file +usd diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index a5f0a72d7a7..05d42c3e4ec 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -11,4 +11,4 @@ jobs: with: repo-token: "${{ secrets.GITHUB_TOKEN }}" configuration-path: .github/config/label.yml - sync-labels: yes + sync-labels: true From 11c486f8d4d7fe5df842c1b1c63b0fe8d1bb5e06 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 23:32:01 +1000 Subject: [PATCH 20/24] trying a different profile on 16personalities test --- tests/cases/16personalities.plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cases/16personalities.plugin.yml b/tests/cases/16personalities.plugin.yml index 4a010ccfa4d..c55e8392d1e 100644 --- a/tests/cases/16personalities.plugin.yml +++ b/tests/cases/16personalities.plugin.yml @@ -3,7 +3,7 @@ with: token: MOCKED_TOKEN plugin_16personalities: 'yes' - plugin_16personalities_url: https://www.16personalities.com/profiles/b7d9f29453ea5 + plugin_16personalities_url: https://www.16personalities.com/profiles/infp-t/o/f9r5dethb plugin_16personalities_sections: personality, traits plugin_16personalities_scores: 'no' use_mocked_data: 'yes' From ef2aaf1ce51b6a5b1d49707a2170302558153fd2 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 23:36:44 +1000 Subject: [PATCH 21/24] Update check-spelling metadata --- .github/workflows/spelling.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index 67561e8cb97..ad7b47e111b 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -68,7 +68,11 @@ jobs: cspell:npm/npm.txt cspell:aws/aws.txt cspell:software-terms/software-terms.txt - check_extra_dictionaries: true + cspell:software-terms/dict/softwareTerms.txt + cspell:php/dict/php.txt + cspell:python/src/common/extra.txt + cspell:node/dict/node.txt + cspell:python/src/python/python-lib.txt extra_dictionary_limit: 50 comment: From 6145ce3daabad472d8aaee3892887ef9e53090c6 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 23:43:59 +1000 Subject: [PATCH 22/24] Update check-spelling metadata --- .github/actions/spelling/expect.txt | 171 ++-------------------------- 1 file changed, 11 insertions(+), 160 deletions(-) diff --git a/.github/actions/spelling/expect.txt b/.github/actions/spelling/expect.txt index bfe09d5b9a3..c746f303b83 100644 --- a/.github/actions/spelling/expect.txt +++ b/.github/actions/spelling/expect.txt @@ -6,169 +6,107 @@ amd anilist apidojo apostrophecms -args -argv -Arial arobase asi -attr audioscrobbler -autocomplete Autoloaded automator -autosize -axios -backreference Bizau blankslate -blockquote -blog brackethighlighter btn -busybox -cacheable cakeday -captcha -charset -checkbox +charsets chmod chown chrisbottin cloudinary cmake codelines -codemirror codeql colorsets -colspan -Compat -concat Consolas -coord -cron -csso -CVE cwd -dasharray -dashoffset datapoints -datetime dded -denoland -dependabot -deployer -deps dessant -destructuring +dethb Dexcom dflag diffs diffstat -dirname -DOCTYPE domcontentloaded DOUBLEDOWN DOUBLEUP downvotes dprint -dropdown dryrun dto ecma Edg -ejs eleased eleted -emails -emoji emojipedia endgroup endyear ENOENT -entrypoint eopened eqeqeq erged -eslint -esm eugeneware -evenodd eviewed -expr expressjs extracter extralarge -facebook -favicon favourites FEmusic -filesize filesloop -filesystem -Firefox firstname foliojs forkee FORTYFIVEDOWN FORTYFIVEUP -frameborder freefont fss FTg fullyear -func gemoji -geocode -geocoding -geojson +geocodes geopath getrecenttracks gettopartists gettoptracks ghactions -ghcr ghquery gifencoder Gister githubs -githubusercontent gitted -globals Gmap +gnupg gnuplot Gollum -google -googleapis googlechrome -googlemaps gpg -grayscale -grep guttermarker hackernews -hardcode hashnode hashtag herokuapp highalert highlighter -homepage honzaap -href htmlescape htmlsanitize htmlunescape hubot -hyperlinks -identicon ies -iframe imagga -img imgb indepth infographics infographile +infp installable instanceof instantier @@ -176,47 +114,36 @@ Intelli invertocat Ionica ipafont -ipsum -isaacs isocalendar -itemprop itunes jellyfin -jsdom jshemas kacst -keyframes keyup -KHTML -Kotlin largeable lastfm lastname leaderboard lecoq legoandmars -libxml +libgconf +libx libxmljs libxss +libxtst lichess -linecap -linejoin linux lng -localhost localstorage logline -lorem losed lovell lowalert -lowercased lowlighter -lstat +lsb mangas markedjs marudor -matchingbracket matievisthekat maxage maxusers @@ -224,16 +151,12 @@ mbid mde mergeability mergeable -middleware -minimatch mkdir mockresize mozilla MSFT -multiline myplugin myquery -nbsp ncal networkidle newplugin @@ -244,15 +167,9 @@ Nixinova NOASSERTION nocase nodeca -nodejs -noreply notoken -nowrap -npm octicon -OCTO octocat -octokit octonaut octoraw oid @@ -263,31 +180,20 @@ orked pageerror pagespeed pagespeedonline -params patchnote pdated pened PGP -pkgx -pkgxdev -placeholders playcount playlists -plugin -polyfill poopmap practicaldev -prebuilt prettylights previewable -prismjs producthunt ptarjan puppeteergif -purgecss -pwa qmake -quickstart rankeds rapidapi ratelimit @@ -295,37 +201,22 @@ ratelimiter rbmok rbren rcopy -readdir -readline -readme -readonly reated recenttracks -regexp -rgb -rgba rlreset -rowspan rssi runsh SAPISID SAPISIDHASH scorecalc screenshots -scrollbar -SDKs Segoe selfhosted -semver seo -Serializer sgit sgv shipit shm -sidenav -SIGKILL -signup SINGLEDOWN SINGLEUP sourced @@ -334,27 +225,18 @@ spams spdx sponsorable spotify -src -srcset stackexchange stackoverflow stagazers standalone starlist -stderr -stdin stdio -stdout steveukx streamable -stringify stripemojis stroustrup -stylesheet sublimelinter substr -sudo -svgo sysadmin systemctl systemd @@ -363,76 +245,45 @@ templating testapp testcase Thu -timeline -timezone tlwg tmpdir -todo -tooltip topartists toptracks tracklist transfonter trollface TSLA -twemoji -typeof uapi uconf -uid uncache Unconfigured -undef underlinenav -Unescape -Unicode -upcase -upvote urgenthighalert urgentlowalert -uri -urlencoded -urls URLTo usermod -username +usernames ushed usr -utc -utf -utils utm -validator -vercel vnd vuejs waifus wakapi wakatime -wasm -webkit -webserver websites wget -whitelisted whoami -wiki wikipedia wontfix workaround WORKDIR worldmap wqy -wsl -www -Xcode +xcb xkcd -xlink xmlformat -xmlns -yargs ycombinator -ymd yoda youtube ytd From 5791377816e074e1e7b3c939547955f127a75230 Mon Sep 17 00:00:00 2001 From: mikey Date: Thu, 5 Jun 2025 23:59:49 +1000 Subject: [PATCH 23/24] fix typo in cpp extra dictionary --- .github/workflows/spelling.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index ad7b47e111b..cbf34fa48b9 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -59,7 +59,7 @@ jobs: "cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20241114/dictionaries/" } extra_dictionaries: - cspell/cpp/cpp.txt + cspell:cpp/cpp.txt cspell:html/html.txt cspell:filetypes/filetypes.txt cspell:css/css.txt From df58752fe064652f31e2a9afad1635f36c328791 Mon Sep 17 00:00:00 2001 From: mikey Date: Fri, 6 Jun 2025 00:00:30 +1000 Subject: [PATCH 24/24] update github/codeql-action/init to v3 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f14983f2cb7..85868242588 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,9 +60,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Setup CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: javascript config-file: ./.github/config/codeql.yml - name: Analyze code - uses: github/codeql-action/analyze@v2 \ No newline at end of file + uses: github/codeql-action/analyze@v3 \ No newline at end of file