Skip to content

Commit

Permalink
Prepare v1.0.14 (#590)
Browse files Browse the repository at this point in the history
* Allow access to ghcr.io for pypa/gh-action-pypi-publish

Signed-off-by: Jürgen Kreileder <[email protected]>

* Prepare v1.0.14

Signed-off-by: Jürgen Kreileder <[email protected]>

* Change egress policy from block to audit in GitHub Actions workflow

Signed-off-by: Jürgen Kreileder <[email protected]>

---------

Signed-off-by: Jürgen Kreileder <[email protected]>
  • Loading branch information
jkreileder authored Nov 7, 2024
1 parent 9ad9fc5 commit e4eb5d1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ A clear and concise description of what actually happened.
A clear and concise description of what you expected to happen.

**Environment (please complete the following information):**
- cf-ips-to-hcloud-fw version: [e.g. 1.0.13]
- cf-ips-to-hcloud-fw version: [e.g. 1.0.14]
- Deployment method: [e.g. Docker, Python module]
- If Python module, Python Version: [e.g. 3.13]
- If Python module, OS: [e.g. MacOS 15.1]
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,9 @@ jobs:
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
disable-sudo: true
egress-policy: block
egress-policy: audit
allowed-endpoints: >
ghcr.io:443
test.pypi.org:443
- name: Download all the distribution packages
Expand Down Expand Up @@ -209,8 +210,9 @@ jobs:
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
disable-sudo: true
egress-policy: block
egress-policy: audit
allowed-endpoints: >
ghcr.io:443
upload.pypi.org:443
- name: Download all the distribution packages
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [v1.0.14] - 2024-11-07

Maintenance release with fix PyPi release workflow.

## [v1.0.13] - 2024-11-07

Maintenance release with updated dependencies.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Here's an example using Docker:
```shell
docker run --rm \
--mount type=bind,source=$(pwd)/config.yaml,target=/usr/src/app/config.yaml,readonly \
jkreileder/cf-ips-to-hcloud-fw:1.0.13
jkreileder/cf-ips-to-hcloud-fw:1.0.14
```
(Add `--pull=always` if you use a rolling image tag.)
Expand All @@ -123,7 +123,7 @@ Docker images for `cf-ips-to-hcloud-fw` are available for both `linux/amd64` and
- `1`: This tag always points to the latest `1.x.x` release.
- `1.0`: This tag always points to the latest `1.0.x` release.
- `1.0.13`: This tag points to the specific `1.0.13` release.
- `1.0.14`: This tag points to the specific `1.0.14` release.
- `main`: This tag points to the most recent development version of
`cf-ips-to-hcloud-fw`. Use this at your own risk as it may contain unstable
changes.
Expand Down Expand Up @@ -172,7 +172,7 @@ spec:
runAsUser: 65534
containers:
- name: cf-ips-to-hcloud-fw
image: jkreileder/cf-ips-to-hcloud-fw:1.0.13
image: jkreileder/cf-ips-to-hcloud-fw:1.0.14
# imagePullPolicy: Always # Uncomment this if you use a rolling image tag
securityContext:
allowPrivilegeEscalation: false
Expand Down
2 changes: 1 addition & 1 deletion src/cf_ips_to_hcloud_fw/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__VERSION__ = "1.0.13"
__VERSION__ = "1.0.14"

0 comments on commit e4eb5d1

Please sign in to comment.