@graphql-inspector/action@5.0.21
Patch Changes
-
#2957
ea2e18d
Thanks @wonda-tea-coffee! - Update GitHub Action runtime
fromnode20tonode24.GitHub Actions deprecated Node 20
(https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/) and
now runsusing: node20actions on Node 24 by default. On Node 24,globalThis.navigatoris a
built-in read-only getter, so the legacyglobal.navigator = { userAgent: 'node.js' }assignment
in the action bundle threw
TypeError: Cannot set property navigator of #<Object> which has only a getterat startup,
breaking every workflow that consumed this action.This release removes the obsolete
global.navigatorassignment (Node 24 provides
navigator.userAgentnatively), bumpsruns.usingtonode24inaction.yml, and regenerates
the bundle. Workflows that pin this action will now execute on the Node 24 runtime.