Skip to content
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
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/01-package_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ body:
label: Versions
description: List necessary versions here. This includes your package version, runtime version, operating system etc.
placeholder: |
- discord.js 14.12.1 (`npm ls discord.js` or another package)
- Node.js 22.12.0 (`node --version`)
- TypeScript 5.1.6 (`npm ls typescript` if you use it)
- discord.js 14.24.2 (`npm ls discord.js` or another package)
- Node.js 24.11.0 (`node --version`)
- TypeScript 5.9.3 (`npm ls typescript` if you use it)
- macOS Ventura 13.3.1
validations:
required: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v5

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deprecate-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v5

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false

- name: Install dependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
with:
ref: ${{ inputs.ref || '' }}

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false

- name: Install dependencies
Expand Down Expand Up @@ -215,10 +215,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v5

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-dev-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v5

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
token: ${{ steps.app-token.outputs.token }}
ref: ${{ steps.ref.outputs.ref }}

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false
registry-url: https://registry.npmjs.org/

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v5

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
token: ${{ steps.app-token.outputs.token }}
ref: ${{ inputs.ref || '' }}

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false
registry-url: https://registry.npmjs.org/

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
with:
fetch-depth: 0

- name: Install Node.js v22
uses: actions/setup-node@v5
- name: Install Node.js v24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
package-manager-cache: false

- name: Install dependencies
Expand Down