Skip to content

Commit

Permalink
build(deps): bump sigstore/gh-action-sigstore-python from 2.1.1 to 3.…
Browse files Browse the repository at this point in the history
…0.0 in the actions group (#338)
  • Loading branch information
dependabot[bot] authored Jul 15, 2024
1 parent 24a3b36 commit 3778035
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1

- name: sign
uses: sigstore/gh-action-sigstore-python@v2.1.1
uses: sigstore/gh-action-sigstore-python@v3.0.0
with:
inputs: ./dist/*.tar.gz ./dist/*.whl
release-signing-artifacts: true
4 changes: 2 additions & 2 deletions cachecontrol/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def send(

return resp

def build_response(
def build_response( # type: ignore[override]
self,
request: PreparedRequest,
response: HTTPResponse,
Expand Down Expand Up @@ -143,7 +143,7 @@ def _update_chunk_length(self: HTTPResponse) -> None:
_update_chunk_length, response
)

resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call]
resp: Response = super().build_response(request, response)

# See if we should invalidate the cache.
if request.method in self.invalidating_methods and resp.ok:
Expand Down

0 comments on commit 3778035

Please sign in to comment.