From d09d3713a87099878d9079b3ff71698d177d7650 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 07:43:26 +0000 Subject: [PATCH] Bump the ci-dependencies group across 1 directory with 4 updates Bumps the ci-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node), [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v4) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 6 +++--- .github/workflows/pull-request.yml | 10 +++++----- .github/workflows/verify-main.yml | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2ff87b0..4d7ac19 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,14 +18,14 @@ jobs: build: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 id: checkout with: submodules: true fetch-depth: 0 - name: Install d2 run: curl -fsSL https://d2lang.com/install.sh | sh -s -- - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 22 - name: Yarn version @@ -35,7 +35,7 @@ jobs: - name: Build Quartz run: yarn nx build docs - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: apps/docs/public diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 7a13028..ac0428c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -14,7 +14,7 @@ jobs: name: TypeScript Problem Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 2 ref: ${{ github.event.pull_request.head.sha }} @@ -27,7 +27,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -44,7 +44,7 @@ jobs: image: cypress/included:latest options: --user 1001 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 2 ref: ${{ github.event.pull_request.head.sha }} @@ -57,7 +57,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -68,7 +68,7 @@ jobs: run: yarn node scripts/affected-problems.js --base=${{ github.event.pull_request.base.sha }} --head=${{ github.event.pull_request.head.sha }} --target=test --tag=ui - name: Upload failed tests artifacts if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: Cypress-Artifacts if-no-files-found: ignore diff --git a/.github/workflows/verify-main.yml b/.github/workflows/verify-main.yml index 5cee285..43875b9 100644 --- a/.github/workflows/verify-main.yml +++ b/.github/workflows/verify-main.yml @@ -14,7 +14,7 @@ jobs: name: TypeScript Problem Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 1 - name: Extract node version from package.json @@ -23,7 +23,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -41,7 +41,7 @@ jobs: image: cypress/included:latest options: --user 1001 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 1 - name: Extract node version from package.json @@ -50,7 +50,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -62,7 +62,7 @@ jobs: yarn node scripts/problems.js --target=test --tag=ui - name: Upload failed tests artifacts if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: Cypress-Artifacts if-no-files-found: ignore