Skip to content
Merged
Changes from all commits
Commits
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
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ updates:
# below 7 (the native compiler rewrite) until ts-jest supports it.
- dependency-name: "typescript"
versions: [">=7"]
# @actions/io 3.x is ESM-only, which breaks the CommonJS ncc build.
# Stay on 2.x (CommonJS, Node 24 support) until the action moves to ESM.
# @actions/io, @actions/exec and @actions/core 3.x are ESM-only
# (package.json "type": "module"), which the CommonJS ncc bundle cannot
# require(). @actions/http-client 3.x is still CommonJS, so it is not
# capped. Stay on 2.x for the ESM packages until the action migrates to ESM.
- dependency-name: "@actions/io"
versions: [">=3"]
- dependency-name: "@actions/exec"
versions: [">=3"]
- dependency-name: "@actions/core"
versions: [">=3"]

- package-ecosystem: "github-actions"
directory: "/"
Expand Down
Loading