Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#361)
Browse files Browse the repository at this point in the history
* chore(deps): update all non-major dependencies

* chore: never run this commit as root

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jeroen Claassens <support@favware.tech>
  • Loading branch information
renovate[bot] and favna authored Oct 19, 2024
1 parent aecfd2d commit f33af77
Show file tree
Hide file tree
Showing 7 changed files with 553 additions and 404 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3.6.1
uses: docker/setup-buildx-action@v3.7.1
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push ArchAngel Docker image
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
with:
push: true
context: ./
Expand Down
725 changes: 367 additions & 358 deletions .yarn/releases/yarn-4.5.0.cjs → .yarn/releases/yarn-4.5.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ enableGlobalCache: true

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.5.0.cjs
yarnPath: .yarn/releases/yarn-4.5.1.cjs
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
"@skyra/env-utilities": "^1.3.0",
"bufferutil": "^4.0.8",
"colorette": "^2.0.20",
"discord.js": "^14.16.2",
"marked": "^14.1.2",
"discord.js": "^14.16.3",
"marked": "^14.1.3",
"marked-smartypants": "^1.1.8",
"marked-xhtml": "^1.0.11",
"node-html-to-image": "^4.0.0",
"tslib": "^2.7.0",
"tslib": "^2.8.0",
"utf-8-validate": "^6.0.4",
"ws": "^8.18.0",
"zlib-sync": "^0.1.9"
Expand All @@ -51,17 +51,17 @@
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@skyra/discord-components-core": "^3.6.1",
"@types/node": "^20.16.5",
"@types/node": "^20.16.13",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.5.2"
"typescript": "^5.6.3"
},
"resolutions": {
"ansi-regex": "^5.0.1",
Expand All @@ -74,5 +74,5 @@
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "yarn@4.5.0"
"packageManager": "yarn@4.5.1"
}
1 change: 1 addition & 0 deletions src/commands/Core/end-quote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export class UserCommand extends Command {
(builder) =>
builder //
.setName('2 - End quote')
// @ts-expect-error temporarily ignore the error because discord.js broke types
.setType(ApplicationCommandType.Message),
{ guildIds: getGuildIds() }
)
Expand Down
1 change: 1 addition & 0 deletions src/commands/Core/start-quote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export class UserCommand extends Command {
(builder) =>
builder //
.setName('1 - Start quote')
// @ts-expect-error temporarily ignore the error because discord.js broke types
.setType(ApplicationCommandType.Message),
{ guildIds: getGuildIds() }
)
Expand Down
Loading

0 comments on commit f33af77

Please sign in to comment.