Skip to content
Open
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/coana-guardrail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x
Comment on lines 24 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The step name says "Use Node.js 20.x" but the actual version configured is 24.x. This is misleading and should be updated to match the actual version being used.

Suggested change
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24.x
Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/coana-guardrail.yml
Line: 24:27

Comment:
The step name says "Use Node.js 20.x" but the actual version configured is 24.x. This is misleading and should be updated to match the actual version being used.

```suggestion
      - name: Use Node.js 24.x
        uses: actions/setup-node@v4
        with:
          node-version: 24.x
```

How can I resolve this? If you propose a fix, please make it concise.


- name: Run Coana on the ${{github.base_ref}} branch
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fix-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
registry-url: 'https://registry.npmjs.org'

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runtime-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
- uses: denoland/setup-deno@v2
with:
deno-version: v1.x
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@babel/preset-typescript": "^7.27.0",
"@eslint/js": "^9.37.0",
"@types/jest": "^30.0.0",
"@types/node": "~20",
"@types/node": "~24.10.0",
"@typescript-eslint/parser": "^8.46.0",
"babel-jest": "^30.2.0",
"eslint": "^9.37.0",
Expand Down