-
Notifications
You must be signed in to change notification settings - Fork 0
🩹[Patch]: Configure Dependabot for daily schedule with 7-day cooldown #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,4 +11,6 @@ updates: | |
| - dependencies | ||
| - github-actions | ||
| schedule: | ||
| interval: weekly | ||
| interval: daily | ||
| cooldown: | ||
| default-days: 7 | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,12 +19,12 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repo | ||
| uses: actions/checkout@v6 | ||
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Lint code base | ||
| uses: super-linter/super-linter@latest | ||
| uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 | ||
|
Comment on lines
+22
to
+27
|
||
| env: | ||
| GITHUB_TOKEN: ${{ github.token }} | ||
| VALIDATE_JSON_PRETTIER: false | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
cooldownconfiguration option is not a valid Dependabot configuration setting. According to the GitHub Dependabot documentation (https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file), the valid configuration options for the schedule section areinterval,day,time, andtimezone. Thecooldownoption does not exist in the official Dependabot configuration schema.If the goal is to delay updates after a dependency release, this cannot be achieved through Dependabot's native configuration. Consider alternative approaches such as: