From 4a87113da3cdfa114336dd8c3951799c726a74e9 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Mon, 23 Oct 2023 18:37:26 +0200 Subject: [PATCH] chore(deps): update to actions/setup-node@v4 update Node.js internal default version to 20.8.1 --- .github/workflows/check-dist.yml | 4 ++-- .github/workflows/example-node-versions.yml | 2 +- .github/workflows/main.yml | 4 ++-- README.md | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 06d3ba583..75241bc63 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -20,9 +20,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 20.5.0 + node-version: 20.8.1 - run: npm ci - run: npm run format - run: npm run build diff --git a/.github/workflows/example-node-versions.yml b/.github/workflows/example-node-versions.yml index d62ce0c29..f15127287 100644 --- a/.github/workflows/example-node-versions.yml +++ b/.github/workflows/example-node-versions.yml @@ -18,7 +18,7 @@ jobs: name: Cypress E2E on Node v${{ matrix.node }} steps: - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - run: node -v diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a5e0c410f..b09a88466 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,13 +12,13 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: # Action runs: using: node20 as defined in # https://github.com/cypress-io/github-action/blob/master/action.yml # Node.js minor version is aligned to # https://github.com/actions/runner/blob/main/src/Misc/externals.sh - node-version: 20.5.0 + node-version: 20.8.1 - run: npm ci - run: npm run format - run: npm run build diff --git a/README.md b/README.md index 9662b4565..57304e8fb 100644 --- a/README.md +++ b/README.md @@ -414,7 +414,7 @@ jobs: name: E2E on Node v${{ matrix.node }} steps: - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - run: node -v @@ -1139,7 +1139,7 @@ jobs: name: E2E on Node v${{ matrix.node }} steps: - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - name: Checkout @@ -1172,7 +1172,7 @@ jobs: node: [18, 20, 21] name: E2E on Node v${{ matrix.node }} steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - uses: actions/checkout@v4