Skip to content

Commit 1351204

Browse files
committed
Update references to python action
* version is 3.2.0 * Remove the example in python.md: quickstart-ci.md seems good enough * Fix a typo in the action name in oidc-in-fulcio.md
1 parent a8455f0 commit 1351204

3 files changed

Lines changed: 4 additions & 19 deletions

File tree

content/en/certificate_authority/oidc-in-fulcio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ When verifying a signature generated through a workflow on GitHub, you can expec
4242
* **certificate-oidc-issuer**: https://token.actions.githubusercontent.com
4343
* **certificate-identity**: https://github.com/USERNAME/REPOSITORY_NAME/.github/workflows/WORKFLOW_NAME@refs/heads/BRANCH_NAME
4444
45-
Sigstore currently offers two different GitHub Actions ([`cosign-installer`](https://github.com/marketplace/actions/cosign-installer) and [`gh-action-sigstore-installer`](https://github.com/sigstore/gh-action-sigstore-python)) to help you easily integrate Sigstore into your workflows. You can learn more about them in our [CI Quickstart]({{< relref "quickstart/quickstart-ci">}})
45+
Sigstore currently offers two different GitHub Actions ([`cosign-installer`](https://github.com/marketplace/actions/cosign-installer) and [`gh-action-sigstore-python`](https://github.com/sigstore/gh-action-sigstore-python)) to help you easily integrate Sigstore into your workflows. You can learn more about them in our [CI Quickstart]({{< relref "quickstart/quickstart-ci">}})
4646

4747
#### GitLab
4848

content/en/language_clients/python.md

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Full project documentation can be found in the [sigstore-python](https://github.
1414
* Support for keyless signature generation and verification with Sigstore
1515
* Support for signing with ["ambient" OpenID Connect identities](https://github.com/sigstore/sigstore-python#signing-with-ambient-credentials)
1616
* A comprehensive [CLI](https://github.com/sigstore/sigstore-python#usage) and corresponding [importable Python API](https://sigstore.github.io/sigstore-python)
17-
* An official [GitHub Action](https://github.com/sigstore/gh-action-sigstore-python)
17+
* An official [GitHub Action](https://github.com/sigstore/gh-action-sigstore-python). See [Sigstore CI Quickstart]({{< relref "quickstart/quickstart-ci">}}) for more information on using the action in a CI system.
18+
1819

1920
## Installation
2021

@@ -28,22 +29,6 @@ python -m pip install sigstore
2829

2930
Optionally, you can install `sigstore` and all its dependencies with [hash-checking mode](https://pip.pypa.io/en/stable/topics/secure-installs/#hash-checking-mode) enabled. Learn more about it in the [project documentation](https://github.com/sigstore/sigstore-python#installation).
3031

31-
### GitHub Action Installation
32-
33-
You can install the official sigstore-python [GitHub Action](https://github.com/sigstore/gh-action-sigstore-python) from the
34-
[GitHub Marketplace](https://github.com/marketplace/actions/gh-action-sigstore-python).
35-
36-
You can also manually add the sigstore-python action to your CI:
37-
38-
```yaml
39-
jobs:
40-
sigstore-python:
41-
steps:
42-
- uses: sigstore/gh-action-sigstore-python@v3.0.0
43-
with:
44-
inputs: foo.txt
45-
```
46-
4732
## Example
4833

4934
### Signing example

content/en/quickstart/quickstart-ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
persist-credentials: false
4949

5050
# This step uses 'gh-action-sigstore-python' to sign the file designated in the inputs field.
51-
- uses: sigstore/gh-action-sigstore-python@v3.1.0
51+
- uses: sigstore/gh-action-sigstore-python@v3.2.0
5252
with:
5353
inputs: to_be_signed.txt
5454
```

0 commit comments

Comments
 (0)