Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 4.1.3 to 4.1.4 (#768)
Browse files Browse the repository at this point in the history
* build(deps): bump actions/checkout from 4.1.3 to 4.1.4

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.3...v4.1.4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* _audit: fix mypy finding

Signed-off-by: William Woodruff <william@trailofbits.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: William Woodruff <william@trailofbits.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: William Woodruff <william@trailofbits.com>
  • Loading branch information
dependabot[bot] and woodruffw authored Apr 24, 2024
1 parent d6bf2cd commit 5b0f272
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- "3.12"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.3
- uses: actions/checkout@v4.1.4

- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.3 # v3.3.0
- uses: actions/checkout@v4.1.4 # v3.3.0

- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.3
- uses: actions/checkout@v4.1.4

- uses: actions/setup-python@v5
with:
Expand All @@ -24,7 +24,7 @@ jobs:
check-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.3
- uses: actions/checkout@v4.1.4

- uses: actions/setup-python@v5
# NOTE(ww): Important: use pip-audit's minimum supported Python version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v4.1.3
- uses: actions/checkout@v4.1.4

- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@v4.1.3 # tag=v3.0.0
uses: actions/checkout@v4.1.4 # tag=v3.0.0
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion pip_audit/_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def audit(
if self._options.dry_run:
# Drain the iterator in dry-run mode.
logger.info(f"Dry run: would have audited {len(list(specs))} packages")
return {}
yield from ()
else:
for dep, vulns in self._service.query_all(specs):
unique_vulns: list[VulnerabilityResult] = []
Expand Down

0 comments on commit 5b0f272

Please sign in to comment.