Skip to content

chore(deps): update all dependencies #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 17, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Login to Heroku
uses: akhileshns/heroku-deploy@v3.12.14
uses: akhileshns/heroku-deploy@v3.13.15
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: ''
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
21.5.0
21.6.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:21.5.0-alpine as base
FROM node:21.6.0-alpine as base

WORKDIR /app

Expand Down Expand Up @@ -28,7 +28,7 @@ RUN pnpm prune --prod && \
pnpm install --production --frozen-lockfile --offline && \
pnpm store prune

FROM node:21.5.0-alpine as application
FROM node:21.6.0-alpine as application

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ volumes:

services:
redis:
image: redis:7.2.3-alpine
image: redis:7.2.4-alpine
ports:
- '6379:6379'
volumes:
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"check": "run-s check:*"
},
"dependencies": {
"@keyv/redis": "2.8.1",
"@keyv/redis": "2.8.3",
"cheerio": "1.0.0-rc.12",
"constant-case": "3.0.4",
"cron": "3.1.6",
Expand All @@ -26,9 +26,9 @@
"zod": "3.22.4"
},
"devDependencies": {
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"@types/node": "20.11.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"dotenv": "16.3.1",
"eslint": "8.56.0",
"eslint-import-resolver-typescript": "3.6.1",
Expand All @@ -38,14 +38,14 @@
"eslint-plugin-sonarjs": "0.23.0",
"eslint-plugin-unused-imports": "3.0.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"prettier": "3.2.4",
"tsup": "8.0.1",
"type-fest": "4.9.0",
"typescript": "5.3.3",
"vitest": "1.1.1"
"vitest": "1.2.1"
},
"packageManager": "pnpm@8.13.1",
"packageManager": "pnpm@8.14.1",
"engines": {
"node": "21.5.0"
"node": "21.6.0"
}
}
Loading