diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a3514f08..fc714f66 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,17 +4,26 @@ version: 2 updates: # Dependabot automatically checks for updates to any Go modules in the repository, - # then creates pull requests to update them if necessary + # then creates pull requests to dev branch - package-ecosystem: "gomod" directory: "/" + target-branch: "dev" schedule: - interval: "daily" + interval: "weekly" + labels: + - "gomod dependencies" + allow: + - dependency-type: "all" # Dependabot checks for new versions of github actions, # then creates pull requests to update any outdated actions - package-ecosystem: "github-actions" directory: "/" + target-branch: "master" schedule: interval: "weekly" - - + labels: + - "github_actions" + allow: + - dependency-type: "all" + diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 20f53b21..aaa82669 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -13,10 +13,10 @@ name: "CodeQL" on: push: - branches: [ master ] + branches: [ master, dev ] pull_request: # The branches below must be a subset of the branches above - branches: [ master ] + branches: [ master, dev ] schedule: - cron: '33 5 * * 0'