Skip to content

Commit

Permalink
Monitor workflow files in non-default locations. (#69148)
Browse files Browse the repository at this point in the history
In addition to the default `.github/workflows` directory for GitHub Actions workflows, the repo also has a `setup-node` folder containing a composite action. This is not currently monitored by Dependabot for updates.

There are several updates to 3rd party actions in this composite action that are needed to avoid problems as a result of upstream changes. This updates the Dependabot configuration to also monitor this directory.

Co-authored-by: desrosj <[email protected]>
  • Loading branch information
desrosj and desrosj authored Feb 11, 2025
1 parent 6e42fc3 commit 4cc312b
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 @@ -4,7 +4,9 @@ version: 2
updates:
# Check for updates to GitHub Actions.
- package-ecosystem: 'github-actions'
directory: '/'
directories:
- '.github/workflows'
- '.github/setup-node'
schedule:
interval: 'daily'
open-pull-requests-limit: 10
Expand Down

0 comments on commit 4cc312b

Please sign in to comment.