Skip to content

Commit 09e137c

Browse files
chore(deps): update all dependencies
1 parent 8ade507 commit 09e137c

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

.github/workflows/deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
deployment:
2121
name: Perform deployment
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
permissions: read-all
2424

2525
environment:
@@ -50,7 +50,7 @@ jobs:
5050
run: heroku container:login
5151

5252
- name: Build Docker image
53-
uses: docker/build-push-action@v5
53+
uses: docker/build-push-action@v6
5454
with:
5555
push: true
5656
provenance: false

.github/workflows/integration.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ on:
1515
jobs:
1616
validate-pr-title:
1717
name: Validate PR title
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- uses: amannn/action-semantic-pull-request@v5
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2323

2424
integration:
2525
name: Continuous integration checks
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-24.04
2727
steps:
2828
- name: Checkout repository
2929
uses: actions/checkout@v4
@@ -62,7 +62,7 @@ jobs:
6262
run: pnpm test
6363

6464
- name: Build Docker image for project
65-
uses: docker/build-push-action@v5
65+
uses: docker/build-push-action@v6
6666
with:
6767
push: false
6868
cache-from: type=gha

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.3.0
1+
23.9.0

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.3.0-alpine as base
1+
FROM node:23.9.0-alpine as base
22

33
WORKDIR /app
44

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

32-
FROM node:22.3.0-alpine as application
32+
FROM node:23.9.0-alpine as application
3333

3434
WORKDIR /app
3535

package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -15,38 +15,38 @@
1515
"check": "run-s check:*"
1616
},
1717
"dependencies": {
18-
"@keyv/redis": "2.8.5",
18+
"@keyv/redis": "4.2.0",
1919
"change-case": "5.4.4",
2020
"cheerio": "1.0.0-rc.12",
21-
"cron": "3.1.7",
21+
"cron": "4.1.0",
2222
"discord.js": "14.15.3",
2323
"ioredis": "5.4.1",
24-
"keyv": "4.5.4",
24+
"keyv": "5.2.3",
2525
"nanoid": "5.0.7",
2626
"open-graph-scraper": "6.5.2",
2727
"zod": "3.23.8"
2828
},
2929
"devDependencies": {
30-
"@types/node": "20.14.2",
31-
"@typescript-eslint/eslint-plugin": "7.13.0",
32-
"@typescript-eslint/parser": "7.13.0",
30+
"@types/node": "22.13.6",
31+
"@typescript-eslint/eslint-plugin": "8.25.0",
32+
"@typescript-eslint/parser": "8.25.0",
3333
"dotenv": "16.4.5",
34-
"eslint": "8.57.0",
34+
"eslint": "9.21.0",
3535
"eslint-import-resolver-typescript": "3.6.1",
3636
"eslint-plugin-import": "2.29.1",
3737
"eslint-plugin-only-error": "1.0.2",
3838
"eslint-plugin-simple-import-sort": "12.1.0",
39-
"eslint-plugin-sonarjs": "1.0.3",
40-
"eslint-plugin-unused-imports": "3.2.0",
41-
"npm-run-all2": "6.2.0",
39+
"eslint-plugin-sonarjs": "3.0.2",
40+
"eslint-plugin-unused-imports": "4.1.4",
41+
"npm-run-all2": "7.0.2",
4242
"prettier": "3.3.2",
4343
"tsup": "8.1.0",
4444
"type-fest": "4.20.0",
4545
"typescript": "5.4.5",
4646
"vitest": "1.6.0"
4747
},
48-
"packageManager": "pnpm@9.3.0",
48+
"packageManager": "pnpm@10.5.2",
4949
"engines": {
50-
"node": "22.3.0"
50+
"node": "23.9.0"
5151
}
5252
}

0 commit comments

Comments
 (0)