diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700707ce..c307d5cd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,19 @@ # 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 schedule: interval: "weekly" + - package-ecosystem: "julia" + directories: + - "/" + - "/docs" + - "/test" + schedule: + interval: "daily" + groups: + all-julia-packages: + patterns: + - "*" diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml deleted file mode 100644 index c3e22990..00000000 --- a/.github/workflows/CompatHelper.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: CompatHelper - -on: - schedule: - - cron: '00 00 * * *' - issues: - types: [opened, reopened] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v5 - - name: Pkg.add("CompatHelper") - run: julia -e 'using Pkg; Pkg.add("CompatHelper")' - - name: CompatHelper.main() - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - julia -e ' - using CompatHelper - dirs = filter( - d -> isdir(d) && isfile(joinpath(d, "Project.toml")), - readdir("tutorials"; join=true), - ) - CompatHelper.main(; subdirs=["", dirs...])'