From f08ec1216d0a93d108f618b24af75e38fad4eea8 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas - Beep Boop Edition Date: Tue, 2 Dec 2025 04:22:11 -0500 Subject: [PATCH 1/2] Update dependabot.yml to add Julia ecosystem support --- .github/dependabot.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index af89ce9..3cc4022 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +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" - ignore: - - dependency-name: "crate-ci/typos" - update-types: ["version-update:semver-patch", "version-update:semver-minor"] \ No newline at end of file + - package-ecosystem: "julia" + directories: + - "/" + - "/docs" + - "/test" + schedule: + interval: "daily" + groups: + all-julia-packages: + patterns: + - "*" From f2a41892e42a2036045507a0fafd2d5a5a7794cc Mon Sep 17 00:00:00 2001 From: Chris Rackauckas - Beep Boop Edition Date: Tue, 2 Dec 2025 04:22:12 -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 cba9134..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()'