From 629dfa142238c0f6d0a298406e73168224cad81f Mon Sep 17 00:00:00 2001 From: Aleksander Zaruczewski Date: Wed, 27 Mar 2024 16:09:52 +0200 Subject: [PATCH 1/2] ci(dependabot): run on weekly basis --- .github/dependabot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0623ccd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,28 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + groups: + main: + applies-to: version-updates + patterns: + - '*' + sec: + applies-to: security-updates + patterns: + - '*' + - package-ecosystem: gomod + directory: / + schedule: + interval: weekly + groups: + main: + applies-to: version-updates + patterns: + - '*' + sec: + applies-to: security-updates + patterns: + - '*' From 4b8d06c15a28c0025fbbceb30d3925f5e6d82bd7 Mon Sep 17 00:00:00 2001 From: Aleksander Zaruczewski Date: Wed, 27 Mar 2024 16:16:53 +0200 Subject: [PATCH 2/2] chore: fix failing lint ci check --- .github/dependabot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0623ccd..73efc6d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,11 +8,11 @@ updates: main: applies-to: version-updates patterns: - - '*' + - "*" sec: applies-to: security-updates patterns: - - '*' + - "*" - package-ecosystem: gomod directory: / schedule: @@ -21,8 +21,8 @@ updates: main: applies-to: version-updates patterns: - - '*' + - "*" sec: applies-to: security-updates patterns: - - '*' + - "*"