From 2c0d668a0197363d15209677b41da05a8461b2e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Roaldseth?= Date: Thu, 21 Dec 2023 10:17:11 +0100 Subject: [PATCH] =?UTF-8?q?G=C3=A5=20tilbake=20til=20sm=C3=A5=20PRs=20slik?= =?UTF-8?q?=20at=20minor=20og=20patch=20kan=20merges=20automatisk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..02aa9ac --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,30 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + time: "10:05" + timezone: "Europe/Oslo" + # Maintain dependencies for gradle + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "daily" + time: "10:05" + timezone: "Europe/Oslo" + # Maintain dependencies for docker + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + time: "10:05" + timezone: "Europe/Oslo" + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + time: "10:05" + timezone: "Europe/Oslo"