From d49c7df1abe5f5b8a2679ee121ff354f71e46a46 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 20:14:48 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/branch-syncer.yml | 2 +- .github/workflows/codeql-scanner.yml | 2 +- .github/workflows/linters.yml | 4 ++-- .github/workflows/pr-auto-approver.yml | 2 +- .github/workflows/releaser.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/branch-syncer.yml b/.github/workflows/branch-syncer.yml index f16c2df..0295459 100644 --- a/.github/workflows/branch-syncer.yml +++ b/.github/workflows/branch-syncer.yml @@ -22,7 +22,7 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.SRGH_TOKEN }} diff --git a/.github/workflows/codeql-scanner.yml b/.github/workflows/codeql-scanner.yml index 5648328..fd3c964 100644 --- a/.github/workflows/codeql-scanner.yml +++ b/.github/workflows/codeql-scanner.yml @@ -58,7 +58,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Add any setup steps before running the `github/codeql-action/init` action. # This includes steps like installing compilers or runtimes (`actions/setup-node` diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index d9bbbfd..b57db77 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Lint commit @@ -30,7 +30,7 @@ jobs: pull-requests: write steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js uses: actions/setup-node@v4 with: diff --git a/.github/workflows/pr-auto-approver.yml b/.github/workflows/pr-auto-approver.yml index b559dfd..4bc96ab 100644 --- a/.github/workflows/pr-auto-approver.yml +++ b/.github/workflows/pr-auto-approver.yml @@ -19,7 +19,7 @@ jobs: id: dependabot-metadata uses: dependabot/fetch-metadata@v2 - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Approve dependabot for non-major updates only if: steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' run: | diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml index f032f69..1e81c9b 100644 --- a/.github/workflows/releaser.yml +++ b/.github/workflows/releaser.yml @@ -25,7 +25,7 @@ jobs: id-token: write steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Test: https://github.com/semantic-release/semantic-release/discussions/2557