From f6af27f02f3968651624c6097cdbad8099798429 Mon Sep 17 00:00:00 2001 From: Gyanesh Gouraw Date: Wed, 28 Jan 2026 12:30:38 +0530 Subject: [PATCH] chore: update default Node version to 22 in workflow configurations --- .github/actions/build/action.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 24029c53..b5e61b26 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -5,7 +5,7 @@ inputs: node: description: The Node version to use required: false - default: 18 + default: 22 runs: using: composite diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6637b51d..2294779a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: rl-scanner: uses: ./.github/workflows/rl-secure.yml with: - node-version: 18 + node-version: 22 artifact-name: 'auth0-react.tgz' secrets: RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }} @@ -30,7 +30,7 @@ jobs: uses: ./.github/workflows/npm-release.yml needs: rl-scanner with: - node-version: 18 + node-version: 22 require-build: true secrets: github-token: ${{ secrets.GITHUB_TOKEN }}