From 775e2b6ce234df0b1210df3f6614414818de71dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 00:32:43 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 2 updates Bumps the all-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/delete-drafts.yml | 2 +- .github/workflows/main.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/delete-drafts.yml b/.github/workflows/delete-drafts.yml index 3564d28..6ef6445 100644 --- a/.github/workflows/delete-drafts.yml +++ b/.github/workflows/delete-drafts.yml @@ -10,7 +10,7 @@ jobs: runs-on: arc-runners-small steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 07edb9f..b6cee32 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,13 +19,13 @@ jobs: steps: - name: Checkout base branch for pull_request_target if: github.event_name == 'pull_request_target' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.base.ref }} - name: Checkout current ref for push and workflow_dispatch if: github.event_name != 'pull_request_target' - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Configure git identity if: github.event_name == 'pull_request_target' @@ -43,7 +43,7 @@ jobs: git merge --no-ff FETCH_HEAD || (echo "Merge conflict detected" && exit 1) - name: Set up Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: "22" @@ -76,7 +76,7 @@ jobs: needs: validate # Depends on the 'validate' job succeeding steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 @@ -102,14 +102,14 @@ jobs: steps: - name: Checkout base branch for pull_request_target if: github.event_name == 'pull_request_target' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.base.ref }} fetch-depth: 0 - name: Checkout current ref for push and workflow_dispatch if: github.event_name != 'pull_request_target' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0