From 5b134ae3f47fc0db0c466f4b0e9d6ef45e8302e0 Mon Sep 17 00:00:00 2001 From: Hendrik Ranocha Date: Sat, 23 May 2026 10:04:38 +0200 Subject: [PATCH 1/2] remove CompatHelper in favor of Dependebot --- .github/dependabot.yml | 13 +++++++++++++ .github/workflows/CompatHelper.yml | 16 ---------------- 2 files changed, 13 insertions(+), 16 deletions(-) delete mode 100644 .github/workflows/CompatHelper.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d5c4abf..29677f3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,3 +10,16 @@ updates: all-github-actions: patterns: - "*" + - package-ecosystem: "julia" + directories: # Location of Julia projects + - "/" + - "/benchmark" + - "/docs" + - "/test" + schedule: + interval: "daily" + groups: + # Group all Julia package updates into a single PR: + all-julia-dependencies: + patterns: + - "*" diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml deleted file mode 100644 index 6c1f6e2..0000000 --- a/.github/workflows/CompatHelper.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: CompatHelper -on: - schedule: - - cron: 0 0 * * * - workflow_dispatch: -jobs: - CompatHelper: - runs-on: ubuntu-latest - steps: - - name: Pkg.add("CompatHelper") - run: julia -e 'using Pkg; Pkg.add("CompatHelper")' - - name: CompatHelper.main() - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} - run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=["", "docs", "test"])' From 4a9f70d0a9784093110008e2cb49f43456574c5b Mon Sep 17 00:00:00 2001 From: Hendrik Ranocha Date: Sat, 23 May 2026 10:16:17 +0200 Subject: [PATCH 2/2] Update dependabot.yml to exclude benchmark directory Removed benchmark directory from Julia project paths. --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 29677f3..b922a80 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,7 +13,6 @@ updates: - package-ecosystem: "julia" directories: # Location of Julia projects - "/" - - "/benchmark" - "/docs" - "/test" schedule: