Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ updates:
- dependencies
- github-actions
schedule:
interval: weekly
interval: daily
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing the Dependabot schedule from weekly to daily will significantly increase the frequency of dependency update PRs. Without the cooldown mechanism (which is not a valid configuration option), this could result in daily PRs for GitHub Actions updates. Consider whether this increased frequency aligns with your maintenance capacity. If you want more frequent checks but controlled PR creation, consider using open-pull-requests-limit to cap the number of concurrent update PRs Dependabot can create.

Copilot uses AI. Check for mistakes.
cooldown:
default-days: 7
Comment on lines +15 to +16
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The cooldown configuration option is not a valid Dependabot configuration as of January 2025. This option does not exist in the GitHub Dependabot documentation. If you want to delay updates after a dependency release, you would need to use other mechanisms such as the open-pull-requests-limit option to control the rate of updates, or handle this through your PR review process. The valid Dependabot configuration options are documented at https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

Suggested change
cooldown:
default-days: 7
open-pull-requests-limit: 5

Copilot uses AI. Check for mistakes.
Comment on lines +14 to +16
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description states only that Dependabot configuration is being updated, but this PR also includes updates to GitHub Actions versions (actions/checkout@v6.0.2, super-linter/super-linter@v8.3.2, PSModule/Auto-Release@v1.9.5) and deletes the .github/release.yml file. The PR description should be updated to accurately reflect all changes being made, or these additional changes should be in a separate PR if they are unrelated to the Dependabot configuration update.

Copilot uses AI. Check for mistakes.
18 changes: 0 additions & 18 deletions .github/release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/Action-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Action-Test
uses: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Auto-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Auto-Release
uses: PSModule/Auto-Release@v1
uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1.9.5
env:
GITHUB_TOKEN: ${{ github.token }}
4 changes: 2 additions & 2 deletions .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
env:
GITHUB_TOKEN: ${{ github.token }}
VALIDATE_JSON_PRETTIER: false
Expand Down