Compare commits
2 Commits
bfe6f94b75
...
b00724a783
| Author | SHA1 | Date | |
|---|---|---|---|
| b00724a783 | |||
| 9cc9bdc023 |
2
.github/workflows/ci-cd.yml
vendored
2
.github/workflows/ci-cd.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Cache pip dependencies
|
- name: Cache pip dependencies
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
|
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
|
||||||
|
|||||||
2
.github/workflows/cli-level1-tests.yml
vendored
2
.github/workflows/cli-level1-tests.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Cache pip dependencies
|
- name: Cache pip dependencies
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
||||||
|
|||||||
2
.github/workflows/security-scanning.yml
vendored
2
.github/workflows/security-scanning.yml
vendored
@@ -121,7 +121,7 @@ jobs:
|
|||||||
safety check --output safety-report.txt
|
safety check --output safety-report.txt
|
||||||
|
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: '18'
|
node-version: '18'
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ click>=8.0.0
|
|||||||
httpx>=0.24.0
|
httpx>=0.24.0
|
||||||
pydantic>=1.10.0
|
pydantic>=1.10.0
|
||||||
pyyaml>=6.0
|
pyyaml>=6.0
|
||||||
rich>=13.0.0
|
rich>=14.3.3
|
||||||
keyring>=23.0.0
|
keyring>=23.0.0
|
||||||
cryptography>=3.4.8
|
cryptography>=3.4.8
|
||||||
click-completion>=0.5.2
|
click-completion>=0.5.2
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ dependencies = [
|
|||||||
"httpx==0.28.1",
|
"httpx==0.28.1",
|
||||||
"pydantic==2.12.5",
|
"pydantic==2.12.5",
|
||||||
"pyyaml==6.0.3",
|
"pyyaml==6.0.3",
|
||||||
"rich==13.7.0",
|
"rich==14.3.3",
|
||||||
"keyring==25.7.0",
|
"keyring==25.7.0",
|
||||||
"cryptography==46.0.5",
|
"cryptography==46.0.5",
|
||||||
"click-completion==0.5.2",
|
"click-completion==0.5.2",
|
||||||
@@ -142,16 +142,16 @@ classifiers = [
|
|||||||
dev = [
|
dev = [
|
||||||
"pytest==9.0.2",
|
"pytest==9.0.2",
|
||||||
"pytest-asyncio==0.21.1",
|
"pytest-asyncio==0.21.1",
|
||||||
"pytest-cov==7.0.0",
|
"pytest-cov==7.1.0",
|
||||||
"pytest-mock==3.15.1",
|
"pytest-mock==3.15.1",
|
||||||
"black==24.3.0",
|
"black==24.3.0",
|
||||||
"isort==8.0.1",
|
"isort==8.0.1",
|
||||||
"ruff==0.15.5",
|
"ruff==0.15.7",
|
||||||
"mypy>=1.19.1,<2.0.0",
|
"mypy>=1.19.1,<2.0.0",
|
||||||
"bandit==1.7.5",
|
"bandit==1.7.5",
|
||||||
"types-requests==2.31.0",
|
"types-requests==2.31.0",
|
||||||
"types-setuptools==69.0.0",
|
"types-setuptools==69.0.0",
|
||||||
"types-PyYAML==6.0.12",
|
"types-PyYAML==6.0.12.20250915",
|
||||||
"sqlalchemy[mypy]==2.0.25"
|
"sqlalchemy[mypy]==2.0.25"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user