Skip to content

Commit 4fd3d95

Browse files
committed
Merge branch 'dev' into 'main'
2 parents 30fad39 + a9ce274 commit 4fd3d95

File tree

6 files changed

+498
-549
lines changed

6 files changed

+498
-549
lines changed

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: '☁ Checkout Repository'
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: '📦 Dependency Review'
1414
uses: actions/dependency-review-action@v4
1515
with:

.github/workflows/development.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: '☁️ checkout repository'
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: '📦 Setup pnpm'
2424
uses: pnpm/action-setup@v4
2525

2626
- name: '🔧 Setup Node.js'
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: '24'
3030

@@ -64,13 +64,13 @@ jobs:
6464
run: echo "Database URL $DATABASE_URL; PG_USER $PG_USER; PG_PW $PG_PW; PG_DB $PG_DB"
6565

6666
- name: '☁️ checkout repository'
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v5
6868

6969
- name: '📦 Setup pnpm'
7070
uses: pnpm/action-setup@v4
7171

7272
- name: '🔧 Setup Node.js'
73-
uses: actions/setup-node@v4
73+
uses: actions/setup-node@v6
7474
with:
7575
node-version: '24'
7676

.github/workflows/docker-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: '☁️ Checkout repository'
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444

4545
# Install the cosign tool except on PR
4646
# https://github.com/sigstore/cosign-installer
@@ -50,13 +50,13 @@ jobs:
5050

5151
# Workaround: https://github.com/docker/build-push-action/issues/461
5252
- name: '🔧 Setup Docker buildx'
53-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349
53+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435
5454

5555
# Login against a Docker registry except on PR
5656
# https://github.com/docker/login-action
5757
- name: '🔐 Log into registry ${{ env.REGISTRY }}'
5858
if: github.event_name != 'pull_request'
59-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
59+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
6060
with:
6161
registry: ${{ env.REGISTRY }}
6262
username: ${{ github.actor }}
@@ -66,15 +66,15 @@ jobs:
6666
# https://github.com/docker/metadata-action
6767
- name: '📦️ Extract Docker metadata'
6868
id: meta
69-
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
69+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f
7070
with:
7171
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
7272

7373
# Build and push Docker image with Buildx (don't push on PR)
7474
# https://github.com/docker/build-push-action
7575
- name: '🏗️ Build and push Docker image'
7676
id: build-and-push
77-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
77+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
7878
with:
7979
context: .
8080
push: ${{ github.event_name != 'pull_request' }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ jobs:
2222
steps:
2323
- name: Generate Token
2424
id: app-token
25-
uses: actions/create-github-app-token@v1
25+
uses: actions/create-github-app-token@v2
2626
with:
2727
app-id: ${{ secrets.APP_ID }}
2828
private-key: ${{ secrets.APP_PRIVATE_KEY }}
2929

3030
- name: '☁️ Checkout repository'
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434
persist-credentials: false
3535
token: ${{ steps.app-token.outputs.token }}
3636

3737
- name: '🔧 Setup Node.js'
38-
uses: actions/setup-node@v4
38+
uses: actions/setup-node@v6
3939
with:
4040
node-version: '24'
4141

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,39 +32,39 @@
3232
"@discordjs/rest": "^2.6.0",
3333
"@hapi/hapi": "^21.4.3",
3434
"@prisma/client": "^6.18.0",
35-
"@t3-oss/env-core": "^0.11.1",
36-
"cross-env": "^7.0.3",
37-
"discord-api-types": "^0.37.120",
35+
"@t3-oss/env-core": "^0.13.8",
36+
"cross-env": "^10.1.0",
37+
"discord-api-types": "^0.38.31",
3838
"discord.js": "^14.24.0",
39-
"dotenv": "^16.6.1",
40-
"joi": "^17.13.3",
41-
"jsdom": "^25.0.1",
39+
"dotenv": "^17.2.3",
40+
"joi": "^18.0.1",
41+
"jsdom": "^27.0.1",
4242
"node-libcurl": "^v5.0.0-2",
43-
"zod": "^3.25.76"
43+
"zod": "^4.1.12"
4444
},
4545
"devDependencies": {
46-
"@commitlint/cli": "^19.8.1",
47-
"@commitlint/config-conventional": "^19.8.1",
46+
"@commitlint/cli": "^20.1.0",
47+
"@commitlint/config-conventional": "^20.0.0",
4848
"@eslint/eslintrc": "^3.3.1",
4949
"@eslint/js": "^9.38.0",
5050
"@hapi/code": "^9.0.3",
5151
"@hapi/iron": "^7.0.1",
5252
"@hapi/lab": "^25.3.2",
5353
"@tsconfig/node16": "^16.1.6",
54-
"@types/hapi__catbox": "^10.2.6",
55-
"@types/jsdom": "^21.1.7",
56-
"@types/ms": "^0.7.34",
57-
"@types/node": "^22.18.12",
54+
"@types/hapi__catbox": "^12.1.0",
55+
"@types/jsdom": "^27.0.0",
56+
"@types/ms": "^2.1.0",
57+
"@types/node": "^24.9.1",
5858
"@types/node-fetch": "^2.6.13",
5959
"@typescript-eslint/eslint-plugin": "^8.46.2",
6060
"@typescript-eslint/parser": "^8.46.2",
6161
"c8": "^10.1.3",
6262
"cz-conventional-changelog": "^3.3.0",
63-
"esbuild": "0.25.2",
63+
"esbuild": "0.25.11",
6464
"eslint": "^9.38.0",
6565
"globals": "^16.4.0",
6666
"husky": "^9.1.7",
67-
"lint-staged": "^15.5.2",
67+
"lint-staged": "^16.2.6",
6868
"prettier": "^3.6.2",
6969
"prisma": "^6.18.0",
7070
"rimraf": "^6.0.1",

0 commit comments

Comments
 (0)