mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-09 09:59:40 -06:00
- Change base image from node:20-alpine to node:24-alpine in Dockerfile for both builder and final stages. - Update package dependencies in package.json and package-lock.json, including @aws-sdk/client-sqs, @prisma/client, @sentry/node, multer, pino, and others to their latest versions. - Adjust GitHub Actions workflows to use updated action versions for better performance and security.
42 lines
946 B
YAML
42 lines
946 B
YAML
version: 2
|
|
updates:
|
|
# Enable version updates for npm
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
target-branch: "develop"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
time: "09:00"
|
|
open-pull-requests-limit: 10
|
|
commit-message:
|
|
prefix: "chore"
|
|
prefix-development: "chore"
|
|
include: "scope"
|
|
|
|
# Enable version updates for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
target-branch: "develop"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
time: "09:00"
|
|
open-pull-requests-limit: 5
|
|
commit-message:
|
|
prefix: "ci"
|
|
include: "scope"
|
|
|
|
# Enable version updates for Docker
|
|
- package-ecosystem: "docker"
|
|
directory: "/"
|
|
target-branch: "develop"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
time: "09:00"
|
|
open-pull-requests-limit: 5
|
|
commit-message:
|
|
prefix: "chore"
|
|
include: "scope"
|