From 9911b58232ae7f067e2f177a2e6b222f5f657197 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas - Beep Boop Edition Date: Tue, 2 Dec 2025 04:24:31 -0500 Subject: [PATCH 1/2] Update dependabot.yml to add Julia ecosystem support --- .github/dependabot.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700707ce..3cc4022f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,18 @@ -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 +enable-beta-ecosystems: true # Julia ecosystem updates: - package-ecosystem: "github-actions" - directory: "/" # Location of package manifests + directory: "/" schedule: interval: "weekly" + - package-ecosystem: "julia" + directories: + - "/" + - "/docs" + - "/test" + schedule: + interval: "daily" + groups: + all-julia-packages: + patterns: + - "*" From 420868f8374c6bcc41ec6bbdf2a44e79911b8a46 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas - Beep Boop Edition Date: Tue, 2 Dec 2025 04:24:32 -0500 Subject: [PATCH 2/2] Remove CompatHelper.yml (replaced by Dependabot) --- .github/workflows/CompatHelper.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/CompatHelper.yml diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml deleted file mode 100644 index 81c8c3fc..00000000 --- a/.github/workflows/CompatHelper.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: CompatHelper -on: - schedule: - - cron: '00 00 * * *' - 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.COMPATHELPER_PRIV }} - run: julia -e 'using CompatHelper; CompatHelper.main()'