From 41aa17643e59aef855489fe6ff913a3952b0c973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 30 Sep 2024 20:26:36 +0200 Subject: [PATCH 1/4] chore: add dependabot configuration for GHA MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit And group update per types Signed-off-by: Jérôme Benoit --- .github/dependabot.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 18adbf6..5bb1f0e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,18 @@ version: 2 updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: 'github-actions' + directory: '/' schedule: - interval: "daily" \ No newline at end of file + interval: 'daily' + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'daily' + groups: + regular: + update-types: + - 'minor' + - 'patch' + major: + update-types: + - 'major' \ No newline at end of file From 8e2e0dfc37469686c38600c6c3dec8ff6fa68f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 12 Oct 2024 14:26:01 +0200 Subject: [PATCH 2/4] fix(dependabot): do not group major updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/dependabot.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5bb1f0e..e8df9be 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,6 +13,3 @@ updates: update-types: - 'minor' - 'patch' - major: - update-types: - - 'major' \ No newline at end of file From ce3bce4c8247dfb55ad9f8b7c0c3a9f7d3f96fe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 12 Oct 2024 14:33:50 +0200 Subject: [PATCH 3/4] fix(dependabot): add missing version strategy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e8df9be..31d8255 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,3 +13,4 @@ updates: update-types: - 'minor' - 'patch' + versioning-strategy: increase From 3b98565208e60cb9c0b90ca161da959c7c72af28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 14 Oct 2024 19:05:04 +0200 Subject: [PATCH 4/4] chore: refine configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 31d8255..98e3ba5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,6 +11,6 @@ updates: groups: regular: update-types: - - 'minor' - 'patch' + - 'minor' versioning-strategy: increase