8000 build(deps): bump actions/deploy-pages from 1.2.3 to 1.2.4 by dependabot[bot] · Pull Request #489 · sigstore/sigstore-python · GitHub
[go: up one dir, main page]

Skip to content

build(deps): bump actions/deploy-pages from 1.2.3 to 1.2.4 #489

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@20a4baa1095bad40ba7d6ca0d9abbc220b76603f # v1.2.3
uses: actions/deploy-pages@0243b6c10d06cb8e95ed8ee471231877621202c0 # v1.2.4
4 changes: 2 additions & 2 deletions sigstore/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ def _collect_verification_state(
def _verify_identity(args: argparse.Namespace) -> None:
verifier, files_with_materials = _collect_verification_state(args)

for (file, materials) in files_with_materials:
for file, materials in files_with_materials:
policy_ = policy.Identity(
identity=args.cert_identity,
issuer=args.cert_oidc_issuer,
Expand Down Expand Up @@ -934,7 +934,7 @@ def _verify_github(args: argparse.Namespace) -> None:
policy_ = policy.AllOf(inner_policies)

verifier, files_with_materials = _collect_verification_state(args)
for (file, materials) in files_with_materials:
for file, materials in files_with_materials:
result = verifier.verify(materials=materials, policy=policy_)

if result:
Expand Down
0