-
Notifications
You must be signed in to change notification settings - Fork 23
chore(deps): update dependencies to latest versions #198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,7 +70,7 @@ jobs: | |
| - name: Setup Node.js | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: 20 | ||
| node-version: 22.22 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: In the actions/setup-node GitHub Action, the node-version input accepts values based on Semantic Versioning (SemVer) syntax, as well as specific aliases [1][2]. Supported formats include: - Major versions: e.g., 22, 24 [1] - Specific versions: e.g., 22.17.1, 24.8.0 [1] - NVM LTS syntax: e.g., lts/jod, lts/* [1] - Aliases: latest, current, node, or * [1] As of June 11, 2026, the latest available Node.js 22.x version is 22.22.3 [3][4]. This release, codenamed 'Jod', was published on May 13, 2026 [3][5]. Node.js 22.x is currently in the Maintenance LTS phase [6][7]. Citations:
🏁 Script executed: #!/bin/bash
# Description: Verify Node.js 22.22 availability in Docker
curl -s "https://hub.docker.com/v2/repositories/library/node/tags?page_size=100&name=22" | \
jq -r '.results[].name' | grep -E '^22\.[0-9]+' | sort -V | tail -10Repository: reqcore-inc/reqcore Length of output: 246 Align Node.js pin across CI and Docker:
🤖 Prompt for AI Agents |
||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: reqcore-inc/reqcore
Length of output: 712
🏁 Script executed:
Repository: reqcore-inc/reqcore
Length of output: 1474
🏁 Script executed:
Repository: reqcore-inc/reqcore
Length of output: 3230
🏁 Script executed:
Repository: reqcore-inc/reqcore
Length of output: 6717
🏁 Script executed:
Repository: reqcore-inc/reqcore
Length of output: 11265
🏁 Script executed:
Repository: reqcore-inc/reqcore
Length of output: 5576
Fix Dependabot automerge merge strategy to match release-please expectations
This repo explicitly relies on squash-merged commit/title semantics for release-please (see
.github/pull_request_template.mdand.github/workflows/pr-title-lint.yml), but.github/workflows/dependabot-automerge.ymlnow usesgh pr merge --auto --merge "$PR_URL"(lines 39/52/70), which creates merge commits instead.--mergestill produces the “squash-merged” conventional-commit signal that release-please expects; otherwise switch Dependabot automerge back to--squash(or adjust the release-please workflow/process accordingly).--mergeis chosen (and how it preserves the release-please behavior).🤖 Prompt for AI Agents