You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This GitHub Action uses [`sigstore-python`](https://github.com/sigstore/sigstore-python)
8
-
to generate Sigstore signatures. `gh-action-sigstore-python` is the easiest way to [integrate Sigstore into your CI system](https://docs.sigstore.dev/quickstart/quickstart-ci/) and can be used for not only Python projects, but projects in other languages as well.
8
+
to generate Sigstore signatures. `gh-action-sigstore-python` is the easiest way to [integrate Sigstore into your CI system](https://docs.sigstore.dev/quickstart/quickstart-ci/) and can be used for not only Python projects, but projects in other languages as well.
9
9
10
10
> [!IMPORTANT]
11
11
> Are you publishing a package to PyPI? If so, you **do not need this action**:
@@ -36,7 +36,7 @@ jobs:
36
36
persist-credentials: false
37
37
- name: install
38
38
run: python -m pip install .
39
-
- uses: sigstore/gh-action-sigstore-python@v3.0.0
39
+
- uses: sigstore/gh-action-sigstore-python@v3.0.1
40
40
with:
41
41
inputs: file.txt
42
42
```
@@ -60,15 +60,15 @@ provided unless [release-signing-artifacts](#release-signing-artifacts) is set t
60
60
To sign one or more files:
61
61
62
62
```yaml
63
-
- uses: sigstore/gh-action-sigstore-python@v3.0.0
63
+
- uses: sigstore/gh-action-sigstore-python@v3.0.1
64
64
with:
65
65
inputs: file0.txt file1.txt file2.txt
66
66
```
67
67
68
68
The `inputs` argument also supports file globbing:
69
69
70
70
```yaml
71
-
- uses: sigstore/gh-action-sigstore-python@v3.0.0
71
+
- uses: sigstore/gh-action-sigstore-python@v3.0.1
72
72
with:
73
73
inputs: ./path/to/inputs/*.txt
74
74
```
@@ -77,7 +77,7 @@ Multiple lines are fine, and whitespace in filenames can also be escaped using
77
77
POSIX shell lexing rules:
78
78
79
79
```yaml
80
-
- uses: sigstore/gh-action-sigstore-python@v3.0.0
80
+
- uses: sigstore/gh-action-sigstore-python@v3.0.1
81
81
with:
82
82
inputs: |
83
83
./path/to/inputs/*.txt
@@ -97,7 +97,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
97
97
workflow will use the credentials found in the GitHub Actions environment.
0 commit comments