Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
e2a895d to
63adee5
Compare
There was a problem hiding this comment.
Pull request overview
This pull request adds a new automated release workflow and updates GitHub Actions versions across multiple workflow files in the repository.
Changes:
- Adds a new
.github/workflows/release.ymlworkflow for automated releases via Lerna - Updates
actions/checkoutfrom v3/v4 to v6 across all workflow files - Updates
actions/setup-nodefrom v4 to v6 in the setup-deps composite action
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/release.yml |
New workflow for automated releases with manual trigger |
.github/workflows/pr.yml |
Updates checkout action to v6 |
.github/workflows/ci.yml |
Updates checkout action to v6 across all jobs |
.github/actions/setup-deps/action.yml |
Updates setup-node action to v6 |
examples/storybook-legacy/.github/workflows/ci.yml |
Updates checkout action to v6 |
examples/remix/.github/workflows/playwright.yml |
Updates checkout action to v6 |
examples/react-router/.github/workflows/playwright.yml |
Updates checkout action to v6 |
examples/github-actions/.github/workflows/ci.yml |
Updates checkout action to v6 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - name: Setup deps | ||
| uses: ./.github/actions/setup-deps | ||
| with: | ||
| node-version: 24 |
There was a problem hiding this comment.
The release workflow specifies Node.js version 24, but the package.json engines field specifies Node.js version 22. This inconsistency could lead to unexpected behavior or compatibility issues. Consider aligning the Node.js version used in the release workflow with the version specified in package.json engines.
| node-version: 24 | |
| node-version: 22 |
No description provided.