Skip to content

Commit

Permalink
chore(deps-dev): Bump ruff from 0.8.3 to 0.8.4 (#748)
Browse files Browse the repository at this point in the history
* chore(deps-dev): Bump ruff from 0.8.3 to 0.8.4

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.3 to 0.8.4.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.8.3...0.8.4)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: noqa directive for env variable use

Signed-off-by: Christopher Phillips <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Christopher Phillips <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Christopher Phillips <[email protected]>
  • Loading branch information
dependabot[bot] and spiffcs authored Dec 23, 2024
1 parent fd2b252 commit 5541baf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ types-requests = "^2.28.11.7"
mypy = "^1.1"
radon = ">=5.1,<7.0"
dunamai = "^1.15.0"
ruff = ">=0.5.1,<0.8.4"
ruff = ">=0.5.1,<0.8.5"
yardstick = {git = "https://github.com/anchore/yardstick", rev = "v0.10.0"}
# yardstick = {path = "../yardstick", develop=true }
tabulate = "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion src/vunnel/providers/github/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

@dataclass
class Config:
token: str = "env:GITHUB_TOKEN"
token: str = "env:GITHUB_TOKEN" # noqa: S105
api_url: str = "https://api.github.com/graphql"
runtime: provider.RuntimeConfig = field(
default_factory=lambda: provider.RuntimeConfig(
Expand Down

0 comments on commit 5541baf

Please sign in to comment.