Skip to content

Commit 3778035

Browse files
build(deps): bump sigstore/gh-action-sigstore-python from 2.1.1 to 3.0.0 in the actions group (#338)
1 parent 24a3b36 commit 3778035

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: pypa/gh-action-pypi-publish@release/v1
3636

3737
- name: sign
38-
uses: sigstore/gh-action-sigstore-python@v2.1.1
38+
uses: sigstore/gh-action-sigstore-python@v3.0.0
3939
with:
4040
inputs: ./dist/*.tar.gz ./dist/*.whl
4141
release-signing-artifacts: true

cachecontrol/adapter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def send(
7777

7878
return resp
7979

80-
def build_response(
80+
def build_response( # type: ignore[override]
8181
self,
8282
request: PreparedRequest,
8383
response: HTTPResponse,
@@ -143,7 +143,7 @@ def _update_chunk_length(self: HTTPResponse) -> None:
143143
_update_chunk_length, response
144144
)
145145

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

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

0 commit comments

Comments
 (0)