Skip to content
Merged
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
18 changes: 17 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
objects.githubusercontent.com:443
github.com:443
pypi.org:443
test.pypi.org:443
api.github.com:443

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -77,6 +76,7 @@ jobs:
ghcr.io:443
pkg-containers.githubusercontent.com:443
pypi.org:443
test.pypi.org:443
upload.pypi.org:443
files.pythonhosted.org:443
fulcio.sigstore.dev:443
Expand Down Expand Up @@ -109,6 +109,22 @@ jobs:
id-token: write # Mandatory for trusted publishing

steps:
- name: Harden Runner
- uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
- with:
- disable-sudo: true
- egress-policy: block
- allowed-endpoints: >
- github.com:443
- api.github.com:443
- ghcr.io:443
- pkg-containers.githubusercontent.com:443
- pypi.org:443
- upload.pypi.org:443
- files.pythonhosted.org:443
- fulcio.sigstore.dev:443
- rekor.sigstore.dev:443
- tuf-repo-cdn.sigstore.dev:443
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
path: dist
Expand Down