Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e1f6f73
ci(deps): bump github/codeql-action from 3 to 4
dependabot[bot] Oct 18, 2025
9862249
build(deps): bump fs-extra from 11.3.1 to 11.3.2
dependabot[bot] Oct 18, 2025
f55ebd5
build(deps-dev): bump @npmcli/package-json from 7.0.0 to 7.0.1
dependabot[bot] Oct 18, 2025
e29c429
build(deps-dev): bump mocha from 11.7.1 to 11.7.4
dependabot[bot] Oct 18, 2025
3b507f2
build(deps-dev): bump lint-staged from 16.1.6 to 16.2.4
dependabot[bot] Oct 18, 2025
972b2b0
build(deps-dev): bump @types/node from 24.4.0 to 24.8.1
dependabot[bot] Oct 20, 2025
432b9eb
build(deps): bump esbuild from 0.25.9 to 0.25.11
dependabot[bot] Oct 20, 2025
20e3dfc
build(deps-dev): bump @commitlint/cli from 19.8.1 to 20.1.0
dependabot[bot] Oct 20, 2025
2b488d4
build(deps-dev): bump @typescript-eslint/parser from 8.44.0 to 8.46.1
dependabot[bot] Oct 20, 2025
98aaadb
ci(deps): bump actions/setup-node from 5 to 6
dependabot[bot] Oct 20, 2025
9db7e06
Merge pull request #432 from Falcion/dependabot/github_actions/action…
Falcion Oct 23, 2025
bb74bc5
Merge branch 'deps/3.0.0-rc01' into dependabot/npm_and_yarn/typescrip…
Falcion Oct 23, 2025
39429be
Merge pull request #431 from Falcion/dependabot/npm_and_yarn/typescri…
Falcion Oct 23, 2025
ff62b3a
Merge branch 'deps/3.0.0-rc01' into dependabot/npm_and_yarn/commitlin…
Falcion Oct 23, 2025
55d6209
Merge pull request #430 from Falcion/dependabot/npm_and_yarn/commitli…
Falcion Oct 23, 2025
e151e51
build(deps-dev): bump @eslint/js from 9.35.0 to 9.38.0
dependabot[bot] Oct 23, 2025
7cdc9b8
Merge pull request #429 from Falcion/dependabot/npm_and_yarn/eslint/j…
Falcion Oct 23, 2025
ea54b85
Merge pull request #427 from Falcion/dependabot/npm_and_yarn/esbuild-…
Falcion Oct 23, 2025
e8bffb0
Merge pull request #426 from Falcion/dependabot/npm_and_yarn/types/no…
Falcion Oct 23, 2025
c675917
Merge pull request #422 from Falcion/dependabot/npm_and_yarn/lint-sta…
Falcion Oct 23, 2025
5419e2f
Merge pull request #421 from Falcion/dependabot/github_actions/github…
Falcion Oct 23, 2025
6e15819
Merge pull request #416 from Falcion/dependabot/npm_and_yarn/mocha-11…
Falcion Oct 23, 2025
0f02761
Merge pull request #402 from Falcion/dependabot/npm_and_yarn/npmcli/p…
Falcion Oct 23, 2025
3a0f0e8
Merge pull request #401 from Falcion/dependabot/npm_and_yarn/fs-extra…
Falcion Oct 23, 2025
a92ae3a
build(deps-dev): migrate eslint typescript plugins
Falcion Oct 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/analytics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initializate
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -58,7 +58,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
Expand All @@ -71,6 +71,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: '/language:${{matrix.language}}'
2 changes: 1 addition & 1 deletion .github/workflows/build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 'latest'
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 'latest'

Expand Down
Loading