diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index a7b9bc8bf..eb091b9cc 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -6,6 +6,9 @@ on: branches: - migration-merge +env: + NODE_VERSION: '22.11.0' + jobs: cache: runs-on: ubuntu-latest @@ -26,7 +29,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: ${{ env.NODE_VERSION }} - name: Install Dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' @@ -52,7 +55,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: ${{ env.NODE_VERSION }} - name: Install Dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' @@ -81,7 +84,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: ${{ env.NODE_VERSION }} - name: Install Dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' @@ -110,7 +113,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: ${{ env.NODE_VERSION }} - name: Install Dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' @@ -139,7 +142,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: ${{ env.NODE_VERSION }} - name: Install Dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true'