Skip to content

Commit

Permalink
chore: Add setup-dependencies directory to Dependabot config (#133)
Browse files Browse the repository at this point in the history
# Pull Request

## Description

This change updates the Dependabot configuration to monitor GitHub
Actions dependencies in an additional directory. Specifically, it adds
the ".github/actions/setup-dependencies" directory to the list of
monitored paths. This ensures that Dependabot will check for updates in
both the root directory and the setup-dependencies action directory,
potentially improving the maintenance and security of the project's
GitHub Actions.

fixes #134
  • Loading branch information
JackPlowman authored Oct 6, 2024
1 parent 2172c86 commit 44ec79d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ version: 2

updates:
- package-ecosystem: "github-actions"
directory: "/"
directories:
- "/"
- ".github/actions/setup-dependencies"
commit-message:
prefix: "deps(github-actions)"
schedule:
Expand Down

0 comments on commit 44ec79d

Please sign in to comment.