From bac2eb5bd04f2dd22e247ba4d445935a75084fcb Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Thu, 18 Dec 2025 03:02:30 +0000 Subject: [PATCH 1/2] Update GitHub workflows: remove CompatHelper, add Julia dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove CompatHelper workflows (replaced by dependabot) - Add/update dependabot.yml with Julia package ecosystem - Julia dependabot support is now stable and preferred over CompatHelper 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/dependabot.yml | 6 +++- .github/workflows/CompatHelper.yml | 44 ------------------------------ 2 files changed, 5 insertions(+), 45 deletions(-) delete mode 100644 .github/workflows/CompatHelper.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700707c..667ef82 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,10 @@ -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 +enable-beta-ecosystems: true updates: + - package-ecosystem: "julia" + directory: "/" + schedule: + interval: "weekly" - package-ecosystem: "github-actions" directory: "/" # Location of package manifests schedule: diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml deleted file mode 100644 index b07dc83..0000000 --- a/.github/workflows/CompatHelper.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: CompatHelper -on: - schedule: - - cron: 0 0 * * * - workflow_dispatch: -permissions: - contents: write - pull-requests: write -jobs: - CompatHelper: - runs-on: ubuntu-latest - steps: - - name: Check if Julia is already available in the PATH - id: julia_in_path - run: which julia - continue-on-error: true - - name: Install Julia, but only if it is not already available in the PATH - uses: julia-actions/setup-julia@v2 - with: - version: '1' - arch: ${{ runner.arch }} - if: steps.julia_in_path.outcome != 'success' - - name: "Add the General registry via Git" - run: | - import Pkg - ENV["JULIA_PKG_SERVER"] = "" - Pkg.Registry.add("General") - shell: julia --color=yes {0} - - name: "Install CompatHelper" - run: | - import Pkg - name = "CompatHelper" - uuid = "aa819f21-2bde-4658-8897-bab36330d9b7" - version = "3" - Pkg.add(; name, uuid, version) - shell: julia --color=yes {0} - - name: "Run CompatHelper" - run: | - import CompatHelper - CompatHelper.main(; subdirs=["", "docs"]) - shell: julia --color=yes {0} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} From 0bfd2ed0e527bc819362a2473bf9cf973b280ff3 Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Thu, 18 Dec 2025 10:49:51 -0500 Subject: [PATCH 2/2] include docs --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 667ef82..f99ccd3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,7 +2,9 @@ version: 2 enable-beta-ecosystems: true updates: - package-ecosystem: "julia" - directory: "/" + directories: # Location of Julia projects + - "/" + - "/docs" schedule: interval: "weekly" - package-ecosystem: "github-actions"