Compare commits
25 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb8cf39be1 | |||
|
|
ed25554b45 | ||
| a363a3c199 | |||
|
|
b9fbf4ef72 | ||
| ac25becb65 | |||
|
|
daa2772439 | ||
| 190cb7276b | |||
| 92e04bcbac | |||
| 8b90f9224f | |||
| eedc226ab8 | |||
|
|
c76e48c738 | ||
| 01b646f1ad | |||
| e2edad5a6d | |||
| a2349fba7e | |||
|
|
81892b3e4e | ||
|
|
1452795e9a | ||
|
|
c65f01b59c | ||
| e145feac02 | |||
| b78a52c06e | |||
| c090b5025d | |||
|
|
8c3de5bfe4 | ||
|
|
e44c11e896 | ||
|
|
0b8c52e0da | ||
| e44fb7f45a | |||
| 2cb2cc6f77 |
5 changed files with 50 additions and 12 deletions
32
.forgejo/workflows/nyx-scan.yml
Normal file
32
.forgejo/workflows/nyx-scan.yml
Normal 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
|
||||||
|
|
@ -51,6 +51,6 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
__version__ = "0.2.8"
|
__version__ = "0.2.9"
|
||||||
__author__ = "NOMYO AI"
|
__author__ = "NOMYO AI"
|
||||||
__license__ = "Apache-2.0"
|
__license__ = "Apache-2.0"
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "nomyo"
|
name = "nomyo"
|
||||||
version = "0.2.8"
|
version = "0.2.9"
|
||||||
description = "OpenAI-compatible secure chat client with end-to-end encryption for NOMYO Inference Endpoints"
|
description = "OpenAI-compatible secure chat client with end-to-end encryption for NOMYO Inference Endpoints"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "NOMYO.AI", email = "ichi@nomyo.ai"},
|
{name = "NOMYO.AI", email = "ichi@nomyo.ai"},
|
||||||
|
|
@ -27,16 +27,16 @@ classifiers = [
|
||||||
]
|
]
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyio==4.12.0",
|
"anyio==4.13.0",
|
||||||
"certifi==2025.11.12",
|
"certifi==2026.5.20",
|
||||||
"cffi==2.0.0",
|
"cffi==2.0.0",
|
||||||
"cryptography==46.0.6",
|
"cryptography==48.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.11",
|
"idna==3.16",
|
||||||
"pycparser==2.23",
|
"pycparser==3.0",
|
||||||
"typing_extensions==4.15.0",
|
"typing_extensions==4.15.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
6
renovate.json
Normal file
6
renovate.json
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"local>nomyo-ai/renovate-config"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
anyio==4.12.0
|
anyio==4.13.0
|
||||||
certifi==2025.11.12
|
certifi==2026.5.20
|
||||||
cffi==2.0.0
|
cffi==2.0.0
|
||||||
cryptography==46.0.6
|
cryptography==48.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.11
|
idna==3.16
|
||||||
pycparser==2.23
|
pycparser==3.0
|
||||||
typing_extensions==4.15.0
|
typing_extensions==4.15.0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue