Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 92 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,34 @@ version: 2

updates:
# =========================
# Yarn Dependencies (via npm ecosystem)
# yarn Dependencies (via npm ecosystem)
# =========================
- package-ecosystem: 'npm' # ← use "npm", not "yarn"
directory: '/' # or "/client" if package.json is inside a subfolder
target-branch: 'main' # always open PRs against main
- package-ecosystem: 'npm'
directory: '/' # or "/client", "/frontend" if needed
target-branch: 'main'
schedule:
interval: 'weekly'
day: 'monday'
time: '09:00'
timezone: 'Asia/Kolkata'
open-pull-requests-limit: 10

groups:
# 1) All patch updates in one PR
patch-updates:
patterns:
- '*'
update-types:
- 'patch'
# 2) All minor updates in one PR
minor-updates:
patterns:
- '*'
update-types:
- 'minor'

allow:
- dependency-type: 'all'

labels:
- 'dependencies'
- 'yarn' # you can keep this label for clarity
- 'yarn'

commit-message:
prefix: 'chore'
Expand All @@ -39,23 +42,101 @@ updates:
# =========================
- package-ecosystem: 'github-actions'
directory: '/'
target-branch: 'main' # always open PRs against main
target-branch: 'main'
schedule:
interval: 'weekly'
day: 'monday'
time: '09:00'
timezone: 'Asia/Kolkata'

groups:
# 1) All patch updates in one PR
patch-actions:
patterns:
- '*'
update-types:
- 'patch'
# 2) All minor updates in one PR
minor-actions:
patterns:
- '*'
update-types:
- 'minor'

labels:
- 'dependencies'
- 'github-actions'
- 'devops'

commit-message:
prefix: 'ci'

# =========================
# Docker
# =========================
- package-ecosystem: 'docker'
directories:
- '/'
target-branch: 'main'
schedule:
interval: 'weekly'
day: 'monday'
time: '09:00'
timezone: 'Asia/Kolkata'

groups:
minor-updates:
# 1) All patch‑style updates in one PR
patch-docker:
patterns:
- '*'
update-types:
- 'patch'
# 2) All minor‑style updates in one PR
minor-docker:
patterns:
- '*'
update-types:
- 'minor'

labels:
- 'dependencies'
- 'docker'
- 'devops'

commit-message:
prefix: 'build'

# =========================
# Docker Compose
# =========================
- package-ecosystem: 'docker-compose'
directories:
- '/'
target-branch: 'main'
schedule:
interval: 'weekly'
day: 'monday'
time: '09:00'
timezone: 'Asia/Kolkata'

groups:
# 1) All patch‑style updates in one PR
patch-docker-compose:
patterns:
- '*'
update-types:
- 'patch'
# 2) All minor‑style updates in one PR
minor-docker-compose:
patterns:
- '*'
update-types:
- 'minor'

labels:
- 'dependencies'
- 'docker-compose'
- 'devops'

commit-message:
prefix: 'build'
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
},
"dependencies": {
"@ayanworks/credo-polygon-w3c-module": "2.0.2",
"@sd-jwt/jwt-status-list": "0.19.0",
"@credo-ts/anoncreds": "0.6.2",
"@credo-ts/askar": "0.6.2",
"@credo-ts/core": "0.6.2",
Expand All @@ -64,6 +63,7 @@
"@opentelemetry/sdk-node": "^0.202.0",
"@opentelemetry/semantic-conventions": "^1.34.0",
"@openwallet-foundation/askar-nodejs": "^0.4.3",
"@sd-jwt/jwt-status-list": "0.19.0",
"@tsoa/runtime": "^6.6.0",
"@types/node-fetch": "^2.6.4",
"@types/ref-struct-di": "^1.1.12",
Expand Down Expand Up @@ -115,7 +115,7 @@
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"ngrok": "^4.3.3",
"prettier": "^3.5.3",
"prettier": "^3.8.3",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node-dev": "^2.0.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6882,10 +6882,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"

prettier@^3.5.3:
version "3.7.4"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.7.4.tgz#d2f8335d4b1cec47e1c8098645411b0c9dff9c0f"
integrity sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==
prettier@^3.8.3:
version "3.8.3"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.8.3.tgz#560f2de55bf01b4c0503bc629d5df99b9a1d09b0"
integrity sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==

pretty-format@^29.0.0, pretty-format@^29.7.0:
version "29.7.0"
Expand Down
Loading