diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 90e05c40d..d83bd08c8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,11 @@ version: 2 updates: - - package-ecosystem: "github-actions" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "julia" + directory: "/" schedule: interval: "weekly" diff --git a/.github/workflows/compathelper.yml b/.github/workflows/compathelper.yml deleted file mode 100644 index 80b5c26df..000000000 --- a/.github/workflows/compathelper.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: compathelper - -on: - workflow_dispatch: - schedule: - - cron: '00 00 * * *' - -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.COMPATHELPER_PRIV }} # optional - run: | - julia -e 'using CompatHelperCompatHelper.main( - subdirs=["RecipesBase", "RecipesPipeline", "PlotThemes", "PlotsBase", "Plots", "StatsPlots", "GraphRecipes"] - )'