8000 build(deps): bump actions/deploy-pages from 1.2.3 to 1.2.4 (#489) · tetsuo-cpp/sigstore-python@bb7c96e · GitHub
[go: up one dir, main page]

Skip to content

Commit bb7c96e

Browse files
build(deps): bump actions/deploy-pages from 1.2.3 to 1.2.4 (sigstore#489)
* build(deps): bump actions/deploy-pages from 1.2.3 to 1.2.4 Bumps [actions/deploy-pages](https://github.com/actions/deploy-pages) from 1.2.3 to 1.2.4. - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@20a4baa...0243b6c) --- updated-dependencies: - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * _cli: blacken 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>
1 parent 3f3ad6d commit bb7c96e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ jobs:
4949
url: ${{ steps.deployment.outputs.page_url }}
5050
steps:
5151
- id: deployment
52-
uses: actions/deploy-pages@20a4baa1095bad40ba7d6ca0d9abbc220b76603f # v1.2.3
52+
uses: actions/deploy-pages@0243b6c10d06cb8e95ed8ee471231877621202c0 # v1.2.4

sigstore/_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ def _collect_verification_state(
835835
def _verify_identity(args: argparse.Namespace) -> None:
836836
verifier, files_with_materials = _collect_verification_state(args)
837837

838-
for (file, materials) in files_with_materials:
838+
for file, materials in files_with_materials:
839839
policy_ = policy.Identity(
840840
identity=args.cert_identity,
841841
issuer=args.cert_oidc_issuer,
@@ -934,7 +934,7 @@ def _verify_github(args: argparse.Namespace) -> None:
934934
policy_ = policy.AllOf(inner_policies)
935935

936936
verifier, files_with_materials = _collect_verification_state(args)
937-
for (file, materials) in files_with_materials:
937+
for file, materials in files_with_materials:
938938
result = verifier.verify(materials=materials, policy=policy_)
939939

940940
if result:

0 commit comments

Comments
 (0)
0