Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,7 @@ updates:
# github-actions:
# patterns:
# - "*"
- package-ecosystem: "julia"
directories:
- "/"
- "/docs"
- "/test"
schedule:
interval: "weekly"
# To group all Julia dependency updates into a single PR, uncomment the following:
# groups:
# julia-dependencies:
# patterns:
# - "*"
# Julia dependency updates are handled by CompatHelper
# (.github/workflows/CompatHelper.yml) — the registry-aware Julia-ecosystem
# standard — so a "julia" package-ecosystem is intentionally NOT declared here
# to avoid duplicate PRs. Do not re-add one.
8 changes: 8 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
# Least-privilege: scope this workflow's GITHUB_TOKEN to exactly what
# CompatHelper needs (read the repo, open the compat PR) instead of the
# repo-wide `write` default. PR *creation* is additionally gated by the
# repo setting "Allow GitHub Actions to create and approve pull requests"
# (Settings > Actions > General > Workflow permissions), enabled 2026-06-09.
permissions:
contents: write
pull-requests: write
jobs:
CompatHelper:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
[compat]
CommonSolve = "0.2"
LineSearch = "0.1"
SciMLBase = "2.53"
SciMLBase = "2.53, 3"
julia = "1.10"

[extras]
Expand Down
Loading