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
2 changes: 1 addition & 1 deletion .github/workflows/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20
node-version: 24
- name: Run Doc Detective
uses: ./ # Uses an action in the root directory
id: dd
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20
node-version: 24
- name: Run Doc Detective
uses: ./ # Uses an action in the root directory
id: dd
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20
node-version: 24
- name: Run Doc Detective
uses: ./ # Uses an action in the root directory
id: dd
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ outputs:
results:
description: JSON-formatted results of the command.
runs:
using: node20 # Specifies the node version
using: node24 # Specifies the node version
main: dist/index.js # Path to the JavaScript file that will be executed
branding:
icon: search # The icon to display in the GitHub Marketplace
Expand Down
2 changes: 1 addition & 1 deletion esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ try {
entryPoints: ["src/index.ts"],
bundle: true,
platform: "node",
target: "node20",
target: "node24",
format: "cjs",
outfile: "dist/index.js",
sourcemap: true,
Expand Down
Loading