Skip to content

Update GitHub action references and fix npm provenance repository link#9089

Merged
tobias-tengler merged 2 commits intomainfrom
tte/fix-npm-provenance
Feb 5, 2026
Merged

Update GitHub action references and fix npm provenance repository link#9089
tobias-tengler merged 2 commits intomainfrom
tte/fix-npm-provenance

Conversation

@tobias-tengler
Copy link
Member

No description provided.

Copilot AI review requested due to automatic review settings February 5, 2026 11:34
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

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:// to https:// 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.

@tobias-tengler tobias-tengler merged commit 98c8329 into main Feb 5, 2026
123 checks passed
@tobias-tengler tobias-tengler deleted the tte/fix-npm-provenance branch February 5, 2026 11:44
@codecov
Copy link

codecov bot commented Feb 5, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (6a3b7a3) to head (0bd01e2).
⚠️ Report is 715 commits behind head on main.

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     
Flag Coverage Δ
unittests ?

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Contributor

github-actions bot commented Feb 5, 2026

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5850.24 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.79ms 7.12ms 163.77ms 8.39ms 13.07ms 18.37ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
4518.18 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.83ms 39.83ms 269.36ms 49.13ms 108.70ms 125.34ms

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 Query

Constant Load (50 VUs)

Requests/sec Error Rate
270.94 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.86ms 173.36ms 554.94ms 178.93ms 225.50ms 249.73ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
309.36 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.05ms 661.18ms 1655.23ms 686.74ms 1400.50ms 1485.33ms

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 Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23746.59 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.70ms 43.00ms 2.06ms 3.92ms 4.81ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18635.04 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.25ms 111.46ms 11.30ms 23.45ms 28.32ms

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants