renovate.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  3. "labels": [
  4. "renovatebot",
  5. "dependencies"
  6. ],
  7. "constraints": {
  8. "go": "1.20"
  9. },
  10. "extends": [
  11. "config:base"
  12. ],
  13. "schedule": ["every tuesday"],
  14. "ignorePaths": [
  15. "**/receiver/apachesparkreceiver/testdata/integration/Dockerfile.apache-spark",
  16. "**/receiver/elasticsearchreceiver/testdata/integration/Dockerfile.elasticsearch.7_16_3",
  17. "**/receiver/elasticsearchreceiver/testdata/integration/Dockerfile.elasticsearch.7_9_3",
  18. "**/receiver/mongodbreceiver/testdata/integration/Dockerfile.mongodb.4_0",
  19. "**/receiver/mongodbreceiver/testdata/integration/Dockerfile.mongodb.4_4.lpu",
  20. "**/receiver/mongodbreceiver/testdata/integration/Dockerfile.mongodb.5_0"
  21. ],
  22. "packageRules": [
  23. {
  24. "matchManagers": ["dockerfile"],
  25. "groupName": "dockerfile deps"
  26. },
  27. {
  28. "matchManagers": ["docker-compose"],
  29. "groupName": "docker-compose deps"
  30. },
  31. {
  32. "matchManagers": ["github-actions"],
  33. "groupName": "github-actions deps"
  34. },
  35. {
  36. "matchManagers": ["gomod"],
  37. "matchSourceUrlPrefixes": ["https://go.opentelemetry.io/collector"],
  38. "groupName": "All OpenTelemetry Collector packages"
  39. },
  40. {
  41. "matchManagers": ["gomod"],
  42. "matchSourceUrlPrefixes": ["https://github.com/aws"],
  43. "groupName": "All github.com/aws packages"
  44. },
  45. {
  46. "matchManagers": ["gomod"],
  47. "matchSourceUrlPrefixes": ["https://github.com/azure"],
  48. "groupName": "All github.com/azure packages"
  49. },
  50. {
  51. "matchManagers": ["gomod"],
  52. "matchSourceUrlPrefixes": ["https://github.com/datadog"],
  53. "groupName": "All github.com/datadog packages"
  54. },
  55. {
  56. "matchManagers": ["gomod"],
  57. "matchSourceUrlPrefixes": ["https://github.com/googlecloudplatform"],
  58. "groupName": "All github.com/googlecloudplatform packages"
  59. },
  60. {
  61. "matchManagers": ["gomod"],
  62. "matchUpdateTypes": ["minor", "major"]
  63. }
  64. ],
  65. "ignoreDeps": [
  66. "github.com/mattn/go-ieproxy"
  67. ]
  68. }