-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
Description
Custom actions outside the .gitbub/workflows directory are not being seen by dependabots current configuration:
updates:
- package-ecosystem: github-actions
directory: /
target-branch: staging
schedule:
interval: monthly
groups:
ci-dependencies:
dependency-type: 'production'The warnings are in the annotations of some action runs yet we haven't seen a dbot pr for them. These custom actions, typically found in .github/actions, are used in a few other repositories and this fix should ripple through those repos.
- agrc/deq-eid-skid
- agrc/gcp-terraform
- agrc/project-moonwalk
- agrc/nfhl-skid
- agrc/porter
- agrc/wmrc-skid
A couple ideas to try could be
-
Moving the
.github/actionsfolder to be a sibling of.github/workflowsto determine if dependabot is only searching in the.github/workflowsdirectory by convention. -
Migrate the
directoryprop todirectoriesadding the custom location.updates: - package-ecosystem: github-actions directories: - / - .github/actions target-branch: staging schedule: interval: monthly groups: ci-dependencies: dependency-type: 'production'