From a4e61118cca8e6c5b17709ca27e02d3012ff74f5 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sun, 2 Feb 2025 01:27:54 +0000 Subject: Added dependabot & renovate --- .devcontainer/devcontainer.json | 4 ++-- .github/dependabot.yml | 14 ++++++++++++++ .github/renovate.json | 23 +++++++++++++++++++++++ 3 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/renovate.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 82442d1..359b4c9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "image": "mcr.microsoft.com/devcontainers/go:1.23", + "image": "mcr.microsoft.com/devcontainers/go:latest", "customizations": { "vscode": { "extensions": [ @@ -12,4 +12,4 @@ "--security-opt", "seccomp=unconfined" ] -} +} \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2d907b7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..d2a17be --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + ":disableDependencyDashboard" + ], + "packageRules": [ + { + "groupName": "all digest updates", + "groupSlug": "all-digest", + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], + "matchPackageNames": [ + "*" + ], + "automerge": true + } + ] +} \ No newline at end of file -- cgit v1.2.3