Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Bump Node version to v24.14.1 to align with Dependabot PRs (#218)

authored by

Paweł Wieczorek and committed by
GitHub
b88b1640 6a4af598

+3 -3
+1 -1
.nvmrc
··· 1 - 24.14.0 1 + 24.14.1
+2 -2
docker-compose.yaml
··· 8 8 9 9 # Runs all migrations from scratch, after clearing the database(s). 10 10 migrations: 11 - image: node:24.14.0-bullseye-slim 11 + image: node:24.14.1-bullseye-slim 12 12 command: bash -c 'set -e 13 13 npm i && ( [ "$CI" = "true" ] && npm run db:clean -- --env staging || true ) 14 14 && for db in api-server-pg scylla clickhouse; do npm run db:create -- --db "$$db" --env staging; npm run db:update -- --db "$$db" --env staging; done' ··· 28 28 condition: service_healthy 29 29 30 30 drop_dbs: 31 - image: node:24.14.0-bullseye-slim 31 + image: node:24.14.1-bullseye-slim 32 32 command: bash -c 'npm i && npm run db:drop -- --env staging' 33 33 working_dir: /src 34 34 env_file: ./.env.githubci