Conversation
added 2 commits
April 27, 2026 15:51
There was a problem hiding this comment.
Pull request overview
This PR updates npm dependencies (runtime + dev) and refreshes the GitHub Pages deployment workflow actions to newer versions, aiming to pick up upstream fixes and improvements.
Changes:
- Bump core web/app dependencies including Astro, React, Tailwind, and related integrations.
- Bump dev tooling dependencies (notably Vite and baseline-browser-mapping) and update
package-lock.jsonaccordingly. - Update GitHub Pages workflow actions from
v4tov5.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updates declared dependency and devDependency version ranges. |
| package-lock.json | Updates the resolved dependency graph to match the new versions. |
| .github/workflows/deploy.yml | Updates GitHub Pages upload/deploy actions to v5. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comments suppressed due to low confidence (2)
package.json:26
viteis bumped to^8.0.10, butastro@6.1.9still depends onvite@7.3.x(package-lock shows a separatenode_modules/astro/node_modules/vite@7.3.2). This can lead to two Vite versions being installed and the project importing Vite APIs (e.g.,loadEnvinastro.config.mjs) from a different major than the one Astro uses internally. Consider removing the directvitedevDependency (letting Astro’s Vite be hoisted), or pinningviteto the major that matches Astro until Astro supports Vite 8.
"vite": "^8.0.10"
package.json:13
@primer/react-brandis bumped to^0.67.0, but the resolved package declaresengines.node >=24.0.0(see package-lock). The deploy workflow currently builds with Node 22, so this upgrade may be unsupported and can break installs/builds in environments that enforceengines(or if the package actually relies on Node 24 features). Consider either pinning@primer/react-brandto a version that supports Node 22, or updating CI/local Node requirements to Node 24+ (and documenting it).
"@primer/react-brand": "^0.67.0",
- Files reviewed: 2/3 changed files
- Comments generated: 1
Comment on lines
+12
to
+26
| "@astrojs/preact": "^5.1.2", | ||
| "@primer/react-brand": "^0.67.0", | ||
| "@tailwindcss/vite": "^4.2.4", | ||
| "astro": "^6.1.9", | ||
| "framer-motion": "^12.38.0", | ||
| "html2canvas": "^1.4.1", | ||
| "preact": "^10.29.1", | ||
| "react": "^19.2.4", | ||
| "react-social-icons": "^6.25.0", | ||
| "tailwindcss": "^4.2.2" | ||
| "react": "^19.2.5", | ||
| "react-social-icons": "^6.26.0", | ||
| "tailwindcss": "^4.2.4" | ||
| }, | ||
| "devDependencies": { | ||
| "@playwright/test": "^1.59.1", | ||
| "baseline-browser-mapping": "^2.10.16", | ||
| "vite": "^8.0.5" | ||
| "baseline-browser-mapping": "^2.10.23", | ||
| "vite": "^8.0.10" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates several dependencies in the
package.jsonfile to their latest patch or minor versions. These updates help ensure the project benefits from the latest features, bug fixes, and security improvements.Dependency updates:
@astrojs/preact,@primer/react-brand,@tailwindcss/vite,astro,react,react-social-icons, andtailwindcssto newer versions for improved stability and features.baseline-browser-mappingandviteto newer versions for better development tooling and compatibility.actions/deploy-pagesandactions/upload-pagesfrom 4 to 5Fixes #85, #84, #83, #82 #81, #80, #75