chore: add dependabot.yml for automated dependency updates#3
Open
dmchaledev wants to merge 1 commit into
Open
Conversation
Adds GitHub Dependabot configuration to automate weekly npm dependency updates. This will help keep dev dependencies (like vitest, vite, esbuild) up-to-date and address security vulnerabilities automatically. Configuration: - Weekly updates on Mondays at 06:00 UTC - Automatic PR labeling with 'dependencies' and 'automated' - Limits to 10 open PRs to avoid spam - Commits prefixed with 'chore'
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.
Adds GitHub Dependabot configuration to automate weekly npm dependency updates.
This configuration will help keep dev dependencies (like vitest, vite, esbuild, etc.) up-to-date and address security vulnerabilities automatically.
Currently, # npm audit report
esbuild <=0.24.2
Severity: moderate
esbuild enables any website to send any requests to the development server and read the response - GHSA-67mh-4wv8-2f99
fix available via
npm audit fix --forceWill install vitest@4.1.7, which is a breaking change
node_modules/esbuild
vite <=6.4.1
Depends on vulnerable versions of esbuild
node_modules/vite
vite-node <=2.2.0-beta.2
Depends on vulnerable versions of vite
node_modules/vite-node
vitest 0.0.1 - 0.0.12 || 0.0.29 - 0.0.122 || 0.3.3 - 2.2.0-beta.2
Depends on vulnerable versions of vite
Depends on vulnerable versions of vite-node
node_modules/vitest
4 moderate severity vulnerabilities
To address all issues (including breaking changes), run:
npm audit fix --force reports 4 moderate severity vulnerabilities in the dev dependencies (esbuild < 0.24.2, which affects vite < 6.4.1). Having automated updates will help address these proactively.
Configuration:
This is a low-risk change that enables automated security maintenance going forward.