From 1a0132f28192a7e79be0387b840f91ad3293fef1 Mon Sep 17 00:00:00 2001 From: James Mayclin Date: Fri, 6 Dec 2024 19:33:37 +0000 Subject: [PATCH 1/3] ci: batch gha updated --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9c9ee516393..f6811f7ada7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,12 @@ updates: directory: "/.github/workflows" schedule: interval: "daily" + # GHA version updates are relatively safe, so batch them all together into a + # single PR. + groups: + gha-updates: + patterns: + - "*" # Maintain dependencies for cargo - package-ecosystem: "cargo" From 85860c63b4c67ed9ccd1e5be4ed15efccdc80089 Mon Sep 17 00:00:00 2001 From: James Mayclin Date: Fri, 6 Dec 2024 19:38:47 +0000 Subject: [PATCH 2/3] batch updates for test crates --- .github/dependabot.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f6811f7ada7..65395ae4393 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,19 +10,27 @@ updates: directory: "/.github/workflows" schedule: interval: "daily" - # GHA version updates are relatively safe, so batch them all together into a - # single PR. groups: - gha-updates: + all-gha-updates: patterns: - "*" - # Maintain dependencies for cargo + # restricted-MSRV, so don't do batch updates - package-ecosystem: "cargo" directories: - "/bindings/rust" + schedule: + interval: "daily" + + # permissive-MSRV, batch updates are acceptable + - package-ecosystem: "cargo" + directories: - "/bindings/rust-examples" - "/tests/pcap" - "/tests/regression" schedule: interval: "daily" + groups: + all-cargo-updates: + patterns: + - "*" From 84f0e9e18c63f04a5d5d1260fef0a27d11dd2dd1 Mon Sep 17 00:00:00 2001 From: James Mayclin Date: Fri, 6 Dec 2024 19:40:59 +0000 Subject: [PATCH 3/3] switch order --- .github/dependabot.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 65395ae4393..b870ca17aae 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,13 +15,6 @@ updates: patterns: - "*" - # restricted-MSRV, so don't do batch updates - - package-ecosystem: "cargo" - directories: - - "/bindings/rust" - schedule: - interval: "daily" - # permissive-MSRV, batch updates are acceptable - package-ecosystem: "cargo" directories: @@ -34,3 +27,10 @@ updates: all-cargo-updates: patterns: - "*" + + # restricted-MSRV, so don't do batch updates + - package-ecosystem: "cargo" + directories: + - "/bindings/rust" + schedule: + interval: "daily"