forked from ChelseaKR/cairn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependabot.yml
More file actions
30 lines (29 loc) · 1022 Bytes
/
Copy pathdependabot.yml
File metadata and controls
30 lines (29 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Dependabot keeps the two things this repository pins from going stale.
#
# `github-actions` is the important one. Every `uses:` here is pinned to a
# commit SHA, which is what stops a moved tag from changing what runs, and it
# is also what stops a security fix from arriving on its own. A pin without
# something that raises it is not caution, it is a frozen dependency.
#
# `pip` covers the development toolchain. The runtime has no dependencies, so
# there is nothing else to watch.
#
# The cooldown is deliberate: a release is not automatically safer than the one
# it replaces on its first day, and a compromised package's window is usually
# short. Waiting a week costs nothing here.
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 5
cooldown:
default-days: 7
- package-ecosystem: pip
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 5
cooldown:
default-days: 7