chore: upgrade npm dependencies - #119
Merged
Merged
Conversation
- Bump @actions/core 1.x → 3.x - Bump jest/\@jest/globals/\@types/jest 29.x → 30.x - Bump @rollup/plugin-commonjs 28.x → 29.x - Bump uuid 11.x → 14.x - Bump @eslint/compat 1.x → 2.x - Bump @github/local-action 3.x → 7.x - Bump prettier-eslint 16.x → 17.x - Bump remaining in-range packages to latest minor/patch - Add global undici override to fix transitive security advisories - Fix eslint.config.mjs: use absolute __dirname for tsconfigRootDir (breaking change in @typescript-eslint/parser) - Hold TypeScript at 5.x (ts-jest peer dep excludes >=7)
Adds an onwarn handler to rollup.config.ts that suppresses two known warnings from @actions/core (a bundled dependency): - THIS_IS_UNDEFINED: from __awaiter CJS wrappers using 'this' - CIRCULAR_DEPENDENCY: from core.js ↔ oidc-utils.js cycle Only warnings where all involved files are in node_modules are suppressed, so any warnings from project source still surface. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
gurleensethi-docker
approved these changes
Aug 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps all npm dependencies to their latest compatible versions and fixes the build and test pipeline to work cleanly after the upgrades.
Dependency changes:
@actions/core1.x → 3.xjest/@jest/globals/@types/jest29.x → 30.x@rollup/plugin-commonjs28.x → 29.xuuid11.x → 14.x@eslint/compat1.x → 2.x@github/local-action3.x → 7.xprettier-eslint16.x → 17.xFixes included:
undicioverride to resolve transitive security advisorieseslint.config.mjsto use an absolute path fortsconfigRootDir(breaking change in@typescript-eslint/parser)ts-jestpeer dep excludes ≥7)THIS_IS_UNDEFINEDandCIRCULAR_DEPENDENCYrollup warnings that originate from bundled@actions/corecode (not our source)