Skip to content

Commit 4aeba1a

Browse files
authored
Update allowed port connections (#426)
### What kind of change does this PR introduce? * Adds more connections to the allowlist when publishing versions ### Does this PR introduce a breaking change? No.
2 parents 696f6a2 + 1a3eb32 commit 4aeba1a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/publish-pypi.yml

+2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ jobs:
2424
egress-policy: block
2525
allowed-endpoints: >
2626
files.pythonhosted.org:443
27+
ghcr.io:443
2728
github.com:443
2829
pypi.org:443
30+
ruf-repo-cdn.sigstore.dev:443
2931
upload.pypi.org:443
3032
- name: Checkout Repository
3133
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

.github/workflows/tag-testpypi.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish Python 🐍 distributions 📦 to TestPyPI
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- 'v*.*.*'
77

88
permissions:
99
contents: read
@@ -48,8 +48,10 @@ jobs:
4848
egress-policy: block
4949
allowed-endpoints: >
5050
files.pythonhosted.org:443
51+
ghcr.io:443
5152
github.com:443
5253
pypi.org:443
54+
ruf-repo-cdn.sigstore.dev:443
5355
test.pypi.org:443
5456
- name: Checkout Repository
5557
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

0 commit comments

Comments
 (0)