Update GitHub action references and fix npm provenance repository link#9089
Update GitHub action references and fix npm provenance repository link#9089tobias-tengler merged 2 commits intomainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions workflow dependencies to their latest versions and fixes a repository URL typo in the npm package configuration.
Changes:
- Fixed repository URL typo in package.json from
git+chttps://tohttps://and modernized format - Updated GitHub Actions to latest versions (checkout v6, setup-dotnet v5, setup-node v6, upload-artifact v6, download-artifact v7, cache v5)
- Corrected Node.js version from nonexistent 24.x to 22, aligning with rest of codebase
- Made npm installation version explicit (11.9.0) for trusted publishing support
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/Nitro/CommandLine/src/chillicream-nitro/package.json | Fixed repository URL typo and format for npm provenance |
| .github/workflows/release.yml | Updated action versions, corrected Node.js version, and made npm version explicit |
| .github/workflows/publish-website.yml | Updated action versions for consistency |
| .github/workflows/coverage.yml | Updated action versions for consistency |
| .github/workflows/ci.yml | Updated action versions for consistency |
| .github/workflows/ci-cleanup.yml | Updated action versions for consistency |
| .github/workflows/benchmarks.yml | Updated action versions for consistency |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #9089 +/- ##
==========================================
- Coverage 74.16% 0 -74.17%
==========================================
Files 2677 0 -2677
Lines 140790 0 -140790
Branches 16371 0 -16371
==========================================
- Hits 104421 0 -104421
+ Misses 30774 0 -30774
+ Partials 5595 0 -5595
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
🚀 Fusion Gateway Performance ResultsSimple Composite QueryConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query fragment User on User {
id
username
name
}
fragment Review on Review {
id
body
}
fragment Product on Product {
inStock
name
price
shippingEstimate
upc
weight
}
query TestQuery {
topProducts(first: 5) {
...Product
reviews {
...Review
author {
...User
}
}
}
}Deep Recursion QueryConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query fragment User on User {
id
username
name
}
fragment Review on Review {
id
body
}
fragment Product on Product {
inStock
name
price
shippingEstimate
upc
weight
}
query TestQuery {
users {
...User
reviews {
...Review
product {
...Product
reviews {
...Review
author {
...User
reviews {
...Review
product {
...Product
}
}
}
}
}
}
}
topProducts(first: 5) {
...Product
reviews {
...Review
author {
...User
reviews {
...Review
product {
...Product
}
}
}
}
}
}Variable Batching ThroughputConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query query TestQuery_8f7a46ce_2(
$__fusion_1_upc: ID!
$__fusion_2_price: Long!
$__fusion_2_weight: Long!
) {
productByUpc(upc: $__fusion_1_upc) {
inStock
shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
}
}Variables (5 sets batched in single request) [
{ "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
{ "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
{ "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
{ "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
{ "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]No baseline data available for comparison. Run 21709914288 • Commit bec8c7d • Thu, 05 Feb 2026 11:53:14 GMT |
No description provided.