3 Commits

Author SHA1 Message Date
618b0e2765 chore(deps): update actions/checkout action to v6.0.2 (#13)
All checks were successful
Release / Tag release (push) Successful in 8s
Release / Create Release (push) Successful in 4s
Release / Publish Docker Images (push) Successful in 1m41s
Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk>
Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
2026-01-22 14:21:08 +00:00
b8313a76fb chore(ci): remove Snyk workflow for security monitoring (#12)
Reviewed-on: #12
2026-01-21 20:45:42 +00:00
854dbc83c4 feat(deps): lock file maintenance (#11)
All checks were successful
Snyk / security (push) Successful in 2m16s
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi44NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuODQuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=-->

Reviewed-on: #11
Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk>
Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
2026-01-19 20:43:52 +00:00
4 changed files with 21 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v6.0.1 uses: actions/checkout@v6.0.2
with: with:
fetch-depth: 0 fetch-depth: 0
@@ -64,19 +64,19 @@ jobs:
# SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }} # SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }}
# SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} # SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
- name: Set up environment for Snyk # - name: Set up environment for Snyk
run: | # run: |
uv pip freeze > requirements.txt # uv pip freeze > requirements.txt
mv pyproject.toml pyproject.toml.bak # mv pyproject.toml pyproject.toml.bak
mv uv.lock uv.lock.bak # mv uv.lock uv.lock.bak
- name: Snyk SAST Scan # - name: Snyk SAST Scan
uses: snyk/actions/python@master # uses: snyk/actions/python@master
env: # env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} # SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with: # with:
# command: snyk # # command: snyk
args: snyk code test #--all-projects --exclude=.archive # args: snyk code test #--all-projects --exclude=.archive
# - name: Snyk Vulnerability Scan # - name: Snyk Vulnerability Scan
# uses: snyk/actions/python@master # uses: snyk/actions/python@master
@@ -88,8 +88,8 @@ jobs:
# # command: snyk # # command: snyk
# args: snyk test #--all-projects --exclude=.archive # args: snyk test #--all-projects --exclude=.archive
- name: Reverse set up environment for Snyk # - name: Reverse set up environment for Snyk
run: | # run: |
rm -f requirements.txt # rm -f requirements.txt
mv pyproject.toml.bak pyproject.toml # mv pyproject.toml.bak pyproject.toml
mv uv.lock.bak uv.lock # mv uv.lock.bak uv.lock

View File

@@ -41,7 +41,7 @@ jobs:
REPO: ${{ gitea.repository }} REPO: ${{ gitea.repository }}
- name: Check out repository - name: Check out repository
uses: actions/checkout@v6.0.1 uses: actions/checkout@v6.0.2
with: with:
fetch-depth: 0 fetch-depth: 0
ref: ${{ needs.tag.outputs.tag_name }} ref: ${{ needs.tag.outputs.tag_name }}

View File

@@ -11,6 +11,8 @@
"semanticCommits": "enabled", "semanticCommits": "enabled",
"semanticCommitScope": "deps", "semanticCommitScope": "deps",
"semanticCommitType": "feat", "semanticCommitType": "feat",
"osvVulnerabilityAlerts": true,
"dependencyDashboardOSVVulnerabilitySummary": "all",
"vulnerabilityAlerts": { "vulnerabilityAlerts": {
"commitMessagePrefix": "[SECURITY] ", "commitMessagePrefix": "[SECURITY] ",
"enabled": true, "enabled": true,