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/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
using: composite
steps:
- name: Install pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v6
- name: Install node
uses: actions/setup-node@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub Release
if: steps.auto_changeset.outputs.has_changeset == 'true' && github.actor != 'github-actions[bot]'
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify softprops/action-gh-release@v3 exists and check for breaking changes

# Check if v3 tag/release exists
echo "=== Checking if v3 exists ==="
gh api repos/softprops/action-gh-release/git/refs/tags/v3 --jq '.ref' 2>/dev/null || echo "v3 tag not found"

# Get latest releases to compare
echo -e "\n=== Latest releases ==="
gh api repos/softprops/action-gh-release/releases --jq '.[:5] | .[] | "Tag: \(.tag_name), Published: \(.published_at)"'

# Check for v3 release notes
echo -e "\n=== v3 Release notes ==="
gh api repos/softprops/action-gh-release/releases --jq '.[] | select(.tag_name | startswith("v3")) | {tag_name, body} | .tag_name + "\n" + .body' | head -100

Repository: ProverCoderAI/dist-deps-prune

Length of output: 932


Verify GitHub-hosted runner supports Node 24 before merging.

The upgrade from softprops/action-gh-release@v2 to v3 is confirmed to exist, but introduces a breaking change: the action runtime migrates from Node 20 to Node 24. Ensure that all runner environments (GitHub-hosted or self-hosted) support the Node 24 Actions runtime. If Node 24 support is not available, the action will fail. The last Node 20-compatible version is v2.6.2.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/release.yml at line 159, The workflow now uses
softprops/action-gh-release@v3 which requires the Actions Node 24 runtime;
verify our GitHub-hosted or self‑hosted runners support Node 24 before merging,
and if they do not, change the reference in the release job from
softprops/action-gh-release@v3 to the last Node‑20 compatible tag
softprops/action-gh-release@v2.6.2 (or update/self‑provision runners to Node
24), ensuring the uses entry is updated accordingly in the
.github/workflows/release.yml release job.

with:
tag_name: v${{ steps.release_version.outputs.version }}
generate_release_notes: true
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
npm pack --silent --pack-destination ../../artifacts
- name: Upload snapshot artifacts
if: steps.snapshot.outputs.success != 'true'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: context-doc-snapshot
path: artifacts/*.tgz
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"description": "Monorepo workspace for dist-deps-prune",
"packageManager": "pnpm@10.29.3",
"packageManager": "pnpm@11.7.0",
"workspaces": [
"packages/*"
],
Expand All @@ -22,8 +22,8 @@
"start": "pnpm --filter @prover-coder-ai/dist-deps-prune start"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8"
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0"
},
"repository": {
"type": "git",
Expand Down
74 changes: 37 additions & 37 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,53 +46,53 @@
"url": "https://github.com/ProverCoderAI/dist-deps-prune/issues"
},
"homepage": "https://github.com/ProverCoderAI/dist-deps-prune#readme",
"packageManager": "pnpm@10.29.3",
"packageManager": "pnpm@11.7.0",
"dependencies": {
"@effect/cli": "^0.73.2",
"@effect/cluster": "^0.56.4",
"@effect/experimental": "^0.58.0",
"@effect/platform": "^0.94.5",
"@effect/platform-node": "^0.104.1",
"@effect/printer": "^0.47.0",
"@effect/printer-ansi": "^0.47.0",
"@effect/rpc": "^0.73.1",
"@effect/cli": "^0.75.2",
"@effect/cluster": "^0.59.0",
"@effect/experimental": "^0.60.0",
"@effect/platform": "^0.96.1",
"@effect/platform-node": "^0.107.0",
"@effect/printer": "^0.49.0",
"@effect/printer-ansi": "^0.49.0",
"@effect/rpc": "^0.75.1",
"@effect/schema": "^0.75.5",
"@effect/sql": "^0.49.0",
"@effect/typeclass": "^0.38.0",
"@effect/workflow": "^0.16.0",
"effect": "^3.19.17",
"ts-morph": "^27.0.2",
"typescript": "^5.9.3"
"@effect/sql": "^0.51.1",
"@effect/typeclass": "^0.40.0",
"@effect/workflow": "^0.18.2",
"effect": "^3.21.3",
"ts-morph": "^28.0.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@biomejs/biome": "^2.5.0",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "latest",
"@effect/vitest": "^0.27.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
"@eslint/compat": "2.0.2",
"@eslint/eslintrc": "3.3.3",
"@effect/vitest": "^0.29.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
"@eslint/compat": "2.1.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@prover-coder-ai/eslint-plugin-suggest-members": "^0.0.25",
"@prover-coder-ai/eslint-plugin-suggest-members": "^0.0.26",
"@ton-ai-core/vibecode-linter": "^1.0.11",
"@types/node": "^24.10.13",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"typescript-eslint": "^8.55.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"@types/node": "^24.13.2",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"typescript-eslint": "^8.61.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.5.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-codegen": "0.34.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.7",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"@vitest/eslint-plugin": "^1.6.9",
"globals": "^17.3.0",
"jscpd": "^4.0.8",
"vite": "^7.3.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"eslint-plugin-unicorn": "^67.0.0",
"@vitest/eslint-plugin": "^1.6.20",
"globals": "^17.6.0",
"jscpd": "^5.0.9",
"vite": "^8.0.16",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
"vitest": "^4.1.9"
}
}
Loading
Loading