Compare commits

..

16 commits
v0.2.9 ... main

Author SHA1 Message Date
f34227a208 Merge pull request 'fix(deps): update dependency certifi to v2026.6.17' (#24) from renovate/certifi-2026.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/24
2026-06-18 10:24:11 +02:00
Renovate Bot
9d5b7d9ae8 fix(deps): update dependency certifi to v2026.6.17
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m26s
2026-06-17 11:27:30 +00:00
0547a6ab3e Merge pull request 'fix(deps): update dependency anyio to v4.14.0' (#23) from renovate/anyio-4.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/23
2026-06-16 07:21:38 +02:00
Renovate Bot
d3dcea110a fix(deps): update dependency anyio to v4.14.0
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m36s
2026-06-15 22:27:43 +00:00
204151b409 Merge pull request 'fix(deps): update dependency idna to v3.18' (#20) from renovate/idna-3.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/20
2026-06-13 08:57:46 +02:00
aba742f3eb Merge pull request 'fix(deps): update dependency cryptography to v49' (#22) from renovate/cryptography-49.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/22
2026-06-13 08:56:09 +02:00
Renovate Bot
98fded1ce9 fix(deps): update dependency cryptography to v49
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m23s
2026-06-12 20:27:48 +00:00
Renovate Bot
a4bab620a7 fix(deps): update dependency idna to v3.18
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m25s
2026-06-02 14:50:31 +00:00
bb8cf39be1 Merge pull request 'fix(deps): update dependency idna to v3.16' (#19) from renovate/idna-3.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/19
2026-05-22 14:30:24 +02:00
Renovate Bot
ed25554b45 fix(deps): update dependency idna to v3.16
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m26s
2026-05-22 00:24:17 +00:00
a363a3c199 Merge pull request 'fix(deps): update dependency certifi to v2026.5.20' (#18) from renovate/certifi-2026.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/18
2026-05-21 20:46:52 +02:00
Renovate Bot
b9fbf4ef72 fix(deps): update dependency certifi to v2026.5.20
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m17s
2026-05-20 11:53:55 +00:00
ac25becb65 Merge pull request 'fix(deps): update dependency idna to v3.15' (#16) from renovate/idna-3.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/16
2026-05-13 12:13:39 +02:00
Renovate Bot
daa2772439 fix(deps): update dependency idna to v3.15
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m16s
2026-05-13 08:29:06 +00:00
190cb7276b Merge pull request '.forgejo/workflows/nyx-scan.yml hinzugefügt' (#17) from workflows into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo/pulls/17
2026-05-13 10:27:21 +02:00
92e04bcbac .forgejo/workflows/nyx-scan.yml hinzugefügt
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m37s
2026-05-13 10:13:51 +02:00
3 changed files with 40 additions and 8 deletions

View file

@ -0,0 +1,32 @@
name: NYX Security Scan
on:
pull_request:
branches: [main, master]
jobs:
nyx-scan:
runs-on: docker-amd64
steps:
- name: Checkout PR
run: |
git clone --depth=1 \
"https://oauth2:${{ github.token }}@bitfreedom.net/code/${{ github.repository }}.git" \
.
git fetch --depth=1 origin ${{ github.sha }}
git checkout ${{ github.sha }}
- name: Fetch action source
run: |
git clone --depth=1 --branch master \
"https://oauth2:${{ github.token }}@bitfreedom.net/code/nomyo-ai/actions.git" \
./.nyx-action
- uses: ./.nyx-action/nyx-scan
with:
forgejo_push_token: ${{ secrets.FORGEJO_PUSH_TOKEN }}
repository: ${{ github.repository }}
pr_number: ${{ github.event.pull_request.number }}
sha: ${{ github.sha }}
fail_on: HIGH

View file

@ -27,15 +27,15 @@ classifiers = [
] ]
requires-python = ">=3.10" requires-python = ">=3.10"
dependencies = [ dependencies = [
"anyio==4.13.0", "anyio==4.14.0",
"certifi==2026.4.22", "certifi==2026.6.17",
"cffi==2.0.0", "cffi==2.0.0",
"cryptography==48.0.0", "cryptography==49.0.0",
"exceptiongroup==1.3.1", "exceptiongroup==1.3.1",
"h11==0.16.0", "h11==0.16.0",
"httpcore==1.0.9", "httpcore==1.0.9",
"httpx==0.28.1", "httpx==0.28.1",
"idna==3.14", "idna==3.18",
"pycparser==3.0", "pycparser==3.0",
"typing_extensions==4.15.0", "typing_extensions==4.15.0",
] ]

View file

@ -1,11 +1,11 @@
anyio==4.13.0 anyio==4.14.0
certifi==2026.4.22 certifi==2026.6.17
cffi==2.0.0 cffi==2.0.0
cryptography==48.0.0 cryptography==49.0.0
exceptiongroup==1.3.1 exceptiongroup==1.3.1
h11==0.16.0 h11==0.16.0
httpcore==1.0.9 httpcore==1.0.9
httpx==0.28.1 httpx==0.28.1
idna==3.14 idna==3.18
pycparser==3.0 pycparser==3.0
typing_extensions==4.15.0 typing_extensions==4.15.0