Compare commits

...

2 Commits

Author SHA1 Message Date
b00724a783 deps: update Python dependencies
Some checks failed
AITBC CI/CD Pipeline / lint-and-test (3.11) (push) Has been cancelled
AITBC CI/CD Pipeline / lint-and-test (3.12) (push) Has been cancelled
AITBC CI/CD Pipeline / lint-and-test (3.13) (push) Has been cancelled
AITBC CI/CD Pipeline / test-cli (push) Has been cancelled
AITBC CI/CD Pipeline / test-services (push) Has been cancelled
AITBC CI/CD Pipeline / test-production-services (push) Has been cancelled
AITBC CI/CD Pipeline / security-scan (push) Has been cancelled
AITBC CI/CD Pipeline / build (push) Has been cancelled
AITBC CI/CD Pipeline / deploy-staging (push) Has been cancelled
AITBC CI/CD Pipeline / deploy-production (push) Has been cancelled
AITBC CI/CD Pipeline / performance-test (push) Has been cancelled
AITBC CI/CD Pipeline / docs (push) Has been cancelled
AITBC CI/CD Pipeline / release (push) Has been cancelled
AITBC CI/CD Pipeline / notify (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-cli-level1 (3.11) (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-cli-level1 (3.12) (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-cli-level1 (3.13) (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-summary (push) Has been cancelled
Security Scanning / Bandit Security Scan (apps/coordinator-api/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (cli/aitbc_cli) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-core/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-crypto/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-sdk/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (tests) (push) Has been cancelled
Security Scanning / CodeQL Security Analysis (javascript) (push) Has been cancelled
Security Scanning / CodeQL Security Analysis (python) (push) Has been cancelled
Security Scanning / Dependency Security Scan (push) Has been cancelled
Security Scanning / Container Security Scan (push) Has been cancelled
Security Scanning / OSSF Scorecard (push) Has been cancelled
Security Scanning / Security Summary Report (push) Has been cancelled
- Update rich from 13.7.0 to 14.3.3
- Update pytest-cov from 7.0.0 to 7.1.0
- Update ruff from 0.15.5 to 0.15.7
- Update types-PyYAML from 6.0.12 to 6.0.12.20250915

Resolves Dependabot PRs #43, #44, #45, #46
2026-03-26 08:30:28 +01:00
9cc9bdc023 ci(deps): bump actions/cache from 3 to 5 and actions/setup-node from 4 to 6 2026-03-26 08:28:57 +01:00
5 changed files with 8 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Cache pip dependencies
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}

View File

@@ -32,7 +32,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Cache pip dependencies
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}

View File

@@ -121,7 +121,7 @@ jobs:
safety check --output safety-report.txt
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '18'
cache: 'npm'

View File

@@ -2,7 +2,7 @@ click>=8.0.0
httpx>=0.24.0
pydantic>=1.10.0
pyyaml>=6.0
rich>=13.0.0
rich>=14.3.3
keyring>=23.0.0
cryptography>=3.4.8
click-completion>=0.5.2

View File

@@ -111,7 +111,7 @@ dependencies = [
"httpx==0.28.1",
"pydantic==2.12.5",
"pyyaml==6.0.3",
"rich==13.7.0",
"rich==14.3.3",
"keyring==25.7.0",
"cryptography==46.0.5",
"click-completion==0.5.2",
@@ -142,16 +142,16 @@ classifiers = [
dev = [
"pytest==9.0.2",
"pytest-asyncio==0.21.1",
"pytest-cov==7.0.0",
"pytest-cov==7.1.0",
"pytest-mock==3.15.1",
"black==24.3.0",
"isort==8.0.1",
"ruff==0.15.5",
"ruff==0.15.7",
"mypy>=1.19.1,<2.0.0",
"bandit==1.7.5",
"types-requests==2.31.0",
"types-setuptools==69.0.0",
"types-PyYAML==6.0.12",
"types-PyYAML==6.0.12.20250915",
"sqlalchemy[mypy]==2.0.25"
]