From 6160de157a3b0415d7547430db57507bf7becaa7 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas - Beep Boop Edition Date: Tue, 2 Dec 2025 04:12:15 -0500 Subject: [PATCH 1/2] Add dependabot.yml for automated dependency updates --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3cc4022 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +enable-beta-ecosystems: true # Julia ecosystem +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "julia" + directories: + - "/" + - "/docs" + - "/test" + schedule: + interval: "daily" + groups: + all-julia-packages: + patterns: + - "*" From 55e81592fd2b98286ccaba15583b6a6baf9c104b Mon Sep 17 00:00:00 2001 From: Chris Rackauckas - Beep Boop Edition Date: Tue, 2 Dec 2025 04:12:16 -0500 Subject: [PATCH 2/2] Remove CompatHelper.yml (replaced by Dependabot) --- .github/workflows/CompatHelper.yml | 36 ------------------------------ 1 file changed, 36 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 a36633b..0000000 --- a/.github/workflows/CompatHelper.yml +++ /dev/null @@ -1,36 +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' - if: steps.julia_in_path.outcome != 'success' - - name: "Run CompatHelper" - run: | - import Pkg - name = "CompatHelper" - uuid = "aa819f21-2bde-4658-8897-bab36330d9b7" - version = "3" - Pkg.add(; name, uuid, version) - Pkg.update() - - import CompatHelper - CompatHelper.main() - shell: julia --color=yes {0} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} \ No newline at end of file