Skip to content

Update CI actions and packages#8984

Merged
glen-84 merged 6 commits intomainfrom
gai/update-ci-actions-and-packages
Apr 10, 2026
Merged

Update CI actions and packages#8984
glen-84 merged 6 commits intomainfrom
gai/update-ci-actions-and-packages

Conversation

@glen-84
Copy link
Copy Markdown
Member

@glen-84 glen-84 commented Dec 8, 2025

Summary of the changes (Less than 80 chars)

  • Updated CI actions and packages.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Dec 8, 2025

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5946.13 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.75ms 6.97ms 161.19ms 8.26ms 12.88ms 18.45ms

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

Requests/sec Error Rate
4581.11 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.81ms 37.33ms 299.67ms 48.52ms 109.39ms 128.17ms

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.40 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.53ms 173.62ms 604.46ms 179.38ms 225.84ms 251.22ms

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

Requests/sec Error Rate
300.43 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.00ms 705.23ms 1750.99ms 702.53ms 1419.31ms 1514.75ms

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
23970.04 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.69ms 43.00ms 2.04ms 3.89ms 4.75ms

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

Requests/sec Error Rate
18828.28 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.10ms 106.98ms 11.20ms 23.34ms 28.09ms

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 20032811931 • Commit d6e2ab4 • Mon, 08 Dec 2025 15:28:44 GMT

@codecov
Copy link
Copy Markdown

codecov Bot commented Dec 8, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (bf6547e) to head (fc00290).

Additional details and impacted files
@@     Coverage Diff      @@
##   main   #8984   +/-   ##
============================
============================

☔ 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.

@glen-84 glen-84 marked this pull request as draft December 15, 2025 14:20
@glen-84 glen-84 changed the title Updated CI actions and packages Update CI actions and packages Mar 9, 2026
@glen-84 glen-84 marked this pull request as ready for review April 10, 2026 10:03
Copilot AI review requested due to automatic review settings April 10, 2026 10:03
Copy link
Copy Markdown
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 (actions and tooling versions) and extends the repo’s cspell dictionary to accommodate new CI/release terminology used by the updated pipelines.

Changes:

  • Bumped multiple GitHub Actions to newer major versions across CI, coverage, website publish, benchmarks, and release workflows.
  • Updated Node.js version used in workflows from 22 to 24 and refreshed a couple of global CLI tool installs (e.g., cspell, markdownlint).
  • Expanded dictionary.txt with additional CI/release-related terms (e.g., CODESIGN, notarytool, spctl, xcrun).

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
dictionary.txt Adds new accepted words to keep cspell passing with updated release/signing terminology.
.github/workflows/release.yml Updates Azure login/signing actions and artifact actions; bumps Node to 24 for npm publish steps.
.github/workflows/publish-website.yml Updates Docker actions and bumps Node to 24 for website build/publish.
.github/workflows/pr-labeler.yml Bumps actions/labeler major version.
.github/workflows/coverage.yml Updates Docker login and artifact upload/download actions.
.github/workflows/ci.yml Bumps Node to 24; pins cspell and updates markdownlint-cli2; updates artifact actions.
.github/workflows/benchmarks.yml Updates actions/github-script and artifact download/upload actions.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@glen-84 glen-84 merged commit fe1d819 into main Apr 10, 2026
128 checks passed
@glen-84 glen-84 deleted the gai/update-ci-actions-and-packages branch April 10, 2026 10:55
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