ci: dependabot major versions for official actions (#3888)

* ci: dependabot major versions for official actions

* style: use extend-select for flake8
This commit is contained in:
Henry Schreiner 2022-04-24 13:50:29 -04:00 committed by GitHub
parent e8e229fa0b
commit 1a8603e479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 8 deletions

View File

@ -7,10 +7,5 @@ updates:
interval: "daily"
ignore:
# Official actions have moving tags like v1
# that are used, so they don't need updates here
- dependency-name: "actions/checkout"
- dependency-name: "actions/setup-python"
- dependency-name: "actions/cache"
- dependency-name: "actions/upload-artifact"
- dependency-name: "actions/download-artifact"
- dependency-name: "actions/labeler"
- dependency-name: "actions/*"
update-types: ["version-update:semver-minor", "version-update:semver-patch"]

View File

@ -46,4 +46,4 @@ max-line-length = 120
show_source = True
exclude = .git, __pycache__, build, dist, docs, tools, venv
extend-ignore = E203, E722, B950
select = C,E,F,N,W,B,B9
extend-select = B9