├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── release.yml │ ├── schedule-selftest.yml │ ├── selftest.yml │ ├── semgrep.yml │ └── zizmor.yml ├── .gitignore ├── .python-version ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── action.py ├── action.yml ├── pyproject.toml ├── requirements ├── dev.in ├── dev.txt ├── main.in └── main.txt ├── setup ├── create-venv.sh └── setup.bash ├── templates ├── sigstore-python-sign.md └── sigstore-python-verify.md └── test ├── another1.txt ├── another2.txt ├── artifact.txt ├── artifact1.txt ├── artifact2.txt ├── more white space.txt ├── subdir ├── hello1.txt ├── hello2.txt └── hello3.txt └── white space.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/schedule-selftest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/.github/workflows/schedule-selftest.yml -------------------------------------------------------------------------------- /.github/workflows/selftest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/.github/workflows/selftest.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/.github/workflows/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.14 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/README.md -------------------------------------------------------------------------------- /action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/action.py -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/action.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/requirements/dev.in -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/main.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/requirements/main.in -------------------------------------------------------------------------------- /requirements/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/requirements/main.txt -------------------------------------------------------------------------------- /setup/create-venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/setup/create-venv.sh -------------------------------------------------------------------------------- /setup/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/setup/setup.bash -------------------------------------------------------------------------------- /templates/sigstore-python-sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/templates/sigstore-python-sign.md -------------------------------------------------------------------------------- /templates/sigstore-python-verify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigstore/gh-action-sigstore-python/HEAD/templates/sigstore-python-verify.md -------------------------------------------------------------------------------- /test/another1.txt: -------------------------------------------------------------------------------- 1 | Another input. 2 | -------------------------------------------------------------------------------- /test/another2.txt: -------------------------------------------------------------------------------- 1 | Yet another input. 2 | -------------------------------------------------------------------------------- /test/artifact.txt: -------------------------------------------------------------------------------- 1 | Hello, World! 2 | -------------------------------------------------------------------------------- /test/artifact1.txt: -------------------------------------------------------------------------------- 1 | Hello, World 1! 2 | -------------------------------------------------------------------------------- /test/artifact2.txt: -------------------------------------------------------------------------------- 1 | Hello, World 2! 2 | -------------------------------------------------------------------------------- /test/more white space.txt: -------------------------------------------------------------------------------- 1 | This is another input with a whitespace filename. 2 | -------------------------------------------------------------------------------- /test/subdir/hello1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/subdir/hello2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/subdir/hello3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/white space.txt: -------------------------------------------------------------------------------- 1 | This input has a filename with whitespace in it. 2 | --------------------------------------------------------------------------------