File tree Expand file tree Collapse file tree 5 files changed +56
-2
lines changed Expand file tree Collapse file tree 5 files changed +56
-2
lines changed Original file line number Diff line number Diff line change 78
78
# id: sigstore-python
79
79
# with:
80
80
# inputs: ./test/artifact.txt
81
- # verify-cert-email: https://github.com/trailofbits /gh-action-sigstore-python/.github/workflows/selftest.yml@${{ github.ref }}
81
+ # verify-cert-email: https://github.com/sigstore /gh-action-sigstore-python/.github/workflows/selftest.yml@${{ github.ref }}
82
82
# staging: true
83
83
84
84
selftest-verify-issuer :
Original file line number Diff line number Diff line change @@ -382,3 +382,15 @@ permissions:
382
382
383
383
Everyone interacting with this project is expected to follow the
384
384
[sigstore Code of Conduct](https://github.com/sigstore/.github/blob/main/CODE_OF_CONDUCT.md)
385
+
386
+ # # Security
387
+
388
+ Should you discover any security issues, please refer to sigstore's [security
389
+ process](https://github.com/sigstore/.github/blob/main/SECURITY.md).
390
+
391
+ # # Info
392
+
393
+ ` gh-action-sigstore-python` is developed as part of the [`sigstore`](https://sigstore.dev) project.
394
+
395
+ We also use a [slack channel](https://sigstore.slack.com)!
396
+ Click [here](https://join.slack.com/t/sigstore/shared_invite/zt-mhs55zh0-XmY3bcfWn4XEyMqUUutbUQ) for the invite link.
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
+ # Copyright 2022 The Sigstore Authors
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
3
17
# action.py: run sigstore-python
4
18
#
5
19
# most state is passed in as environment variables; the only argument
Original file line number Diff line number Diff line change
1
+ # Copyright 2022 The Sigstore Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
1
15
name : " gh-action-sigstore-python"
2
- author : " Alex Cameron <alex.cameron@trailofbits .com>"
16
+ author : " Sigstore Authors <sigstore-dev@googlegroups .com>"
3
17
description : " Use sigstore-python to sign Python packages"
4
18
inputs :
5
19
inputs :
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ # Copyright 2022 The Sigstore Authors
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
3
17
set -eo pipefail
4
18
5
19
die () {
You can’t perform that action at this time.
0 commit comments