Skip to content
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

chore(deps): update all dependencies (major) #146

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
deployment:
name: Perform deployment
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions: read-all

environment:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
run: heroku container:login

- name: Build Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
provenance: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ on:
jobs:
validate-pr-title:
name: Validate PR title
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

integration:
name: Continuous integration checks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
run: pnpm test

- name: Build Docker image for project
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
cache-from: type=gha
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.3.0
23.6.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.3.0-alpine as base
FROM node:23.6.0-alpine as base

WORKDIR /app

Expand Down Expand Up @@ -29,7 +29,7 @@ RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store/v3 \
pnpm prune --prod && \
pnpm install --production --frozen-lockfile --offline

FROM node:22.3.0-alpine as application
FROM node:23.6.0-alpine as application

WORKDIR /app

Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,38 +15,38 @@
"check": "run-s check:*"
},
"dependencies": {
"@keyv/redis": "2.8.5",
"@keyv/redis": "4.2.0",
"change-case": "5.4.4",
"cheerio": "1.0.0-rc.12",
"cron": "3.1.7",
"discord.js": "14.15.3",
"ioredis": "5.4.1",
"keyv": "4.5.4",
"keyv": "5.2.3",
"nanoid": "5.0.7",
"open-graph-scraper": "6.5.2",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.14.2",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"@types/node": "22.10.7",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint": "9.18.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-only-error": "1.0.2",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-sonarjs": "1.0.3",
"eslint-plugin-unused-imports": "3.2.0",
"npm-run-all2": "6.2.0",
"eslint-plugin-sonarjs": "3.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"npm-run-all2": "7.0.2",
"prettier": "3.3.2",
"tsup": "8.1.0",
"type-fest": "4.20.0",
"typescript": "5.4.5",
"vitest": "1.6.0"
"vitest": "3.0.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.3.0"
"node": "23.6.1"
}
}
Loading