-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathdependabot.yml
61 lines (58 loc) · 1.88 KB
/
dependabot.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
groups:
github-actions:
patterns:
- "*"
# Docker can't be updated until we modernize the profiler build process
# - package-ecosystem: docker
# directories:
# - "/src/Agent/NewRelic/Profiler/linux"
# - "/build/**/"
# - "/deploy/**/"
# schedule:
# interval: monthly
# groups:
# docker:
# patterns:
# - "*"
# We do not scan anything in the /src/Agent/NewRelic/Agent/Extensions folder, as those projects
# intentionally reference old versions of the Nuget packages they instrument.
- package-ecosystem: nuget
directories:
- /src/Agent/NewRelic/Agent/Core
- /src/Agent/NewRelic.Api.Agent
- /build
- /src/Agent/MsiInstaller
schedule:
interval: weekly
groups:
nuget-agent:
patterns:
- "*"
# Update a specific set of packages for unit and integration tests
- package-ecosystem: nuget
directories: # not recursive - only the specified directory will be scanned for .csproj or .sln files
- /tests/Agent/IntegrationTests # will pick up container, integration and unbounded test solutions
- / # will pick up FullAgent.sln which contains the unit tests
schedule:
interval: monthly
groups:
nuget-tests:
patterns:
- "*"
allow:
- dependency-name: "coverlet.collector"
- dependency-name: "JustMock"
- dependency-name: "Microsoft.NET.Test.Sdk"
- dependency-name: "Microsoft.VisualStudio.Azure.Containers.Tools.Targets"
- dependency-name: "Microsoft.VisualStudio.Threading.Analyzers"
- dependency-name: "NUnit*"
- dependency-name: "Selenium*"
- dependency-name: "xunit*"
- dependency-name: "PublicApiGenerator"
- dependency-name: "Verify.NUnit"