mirror of
https://github.com/actions/runner.git
synced 2025-12-10 04:06:57 +00:00
* Configure dependabot to check github-actions updates Some actions based on Node 16 are deprecated. See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20. * Under /.github https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#example-dependabotyml-file-for-github-actions * Try /.github/workflows * Update .github/dependabot.yml Co-authored-by: Zongle Wang <wangzongler@gmail.com> --------- Co-authored-by: Tingluo Huang <tingluohuang@github.com>
26 lines
662 B
YAML
26 lines
662 B
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: "docker"
|
|
directory: "/images"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "main"
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "main"
|
|
- package-ecosystem: "nuget"
|
|
directory: "/src"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "main"
|
|
- package-ecosystem: "npm"
|
|
directory: "/src/Misc/expressionFunc/hashFiles"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "main"
|
|
allow:
|
|
- dependency-type: direct
|
|
- dependency-type: production # check only dependencies, which are going to the compiled app, not supporting tools like @vue-cli
|