From 7e8b330cad8138a1c34ea8ab4cf29fa5c8d881bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 17:42:31 +0000 Subject: [PATCH] Build: Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/autobuild.yml | 4 ++-- .github/workflows/bump-dependencies.yml | 4 ++-- .github/workflows/check-json-rpcs-docs.yml | 2 +- .github/workflows/coding-style-check.yml | 6 +++--- .github/workflows/translation-check.yml | 2 +- .github/workflows/update-copyright-notices.yml | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index d17ac1e76e..90628f311e 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -75,7 +75,7 @@ jobs: contents: write steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Determine release version, type and prerelease variables run: ./.github/autobuild/get_build_vars.py @@ -308,7 +308,7 @@ jobs: git config --global --add safe.directory "${GITHUB_WORKSPACE}" - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # only Android needs the oboe submodule, so don't fetch it for other builds submodules: ${{ matrix.config.target_os == 'android' }} diff --git a/.github/workflows/bump-dependencies.yml b/.github/workflows/bump-dependencies.yml index b78696c5d0..2cb12fe315 100644 --- a/.github/workflows/bump-dependencies.yml +++ b/.github/workflows/bump-dependencies.yml @@ -83,7 +83,7 @@ jobs: local_version_regex: (.*["\/])((?:ASIO-SDK|asiosdk)_[^"]+?)(".*|\.zip.*) steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ssh-key: ${{ secrets.BUMP_DEPENDENCIES_SSH_DEPLOY_KEY || 'fail-due-to-missing-ssh-key-as-secret' }} fetch-depth: '0' # we create/compare new branches and therefore require full history @@ -171,7 +171,7 @@ jobs: # This job runs via pull_request_target. Please check for any security # consequences when extending these steps: # https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # this checks out the upstream `main` and not the PR branch; this is fine for us # as we just need a proper config for git/gh to work with. - env: diff --git a/.github/workflows/check-json-rpcs-docs.yml b/.github/workflows/check-json-rpcs-docs.yml index 075100a204..3a6d98aae8 100644 --- a/.github/workflows/check-json-rpcs-docs.yml +++ b/.github/workflows/check-json-rpcs-docs.yml @@ -13,7 +13,7 @@ jobs: check-json-rpc-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: ./tools/generate_json_rpc_docs.py - run: | [[ -z "$(git status --porcelain=v1)" ]] && exit 0 diff --git a/.github/workflows/coding-style-check.yml b/.github/workflows/coding-style-check.yml index 494cbb3b14..bc5ee337cd 100644 --- a/.github/workflows/coding-style-check.yml +++ b/.github/workflows/coding-style-check.yml @@ -30,7 +30,7 @@ jobs: # The clangFormatVersion is based on Ubuntu current LTS (jammy at time of writing). runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check .cpp/.h/.mm with clang-format uses: DoozyX/clang-format-lint-action@bcb4eb2cb0d707ee4f3e5cc3b456eb075f12cf73 with: @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest # shellcheck is already pre-installed on ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check .sh with shellcheck run: find -name '*.sh' -not -path './libs/*' -exec shellcheck --shell=bash {} + - name: Install shfmt @@ -56,7 +56,7 @@ jobs: name: Verify Python coding style runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install pylint run: pip install --user "pylint < 3.0" - name: Check Python files with pylint diff --git a/.github/workflows/translation-check.yml b/.github/workflows/translation-check.yml index ed8fab7f19..171cd7fea3 100644 --- a/.github/workflows/translation-check.yml +++ b/.github/workflows/translation-check.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: "Check Windows installer translations" run: ./tools/check-wininstaller-translations.sh - name: "Check for duplicate hotkeys (will not fail)" diff --git a/.github/workflows/update-copyright-notices.yml b/.github/workflows/update-copyright-notices.yml index 98ea78fa1e..6994f2ad52 100644 --- a/.github/workflows/update-copyright-notices.yml +++ b/.github/workflows/update-copyright-notices.yml @@ -19,7 +19,7 @@ jobs: pull-requests: write contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: ./tools/update-copyright-notices.sh - env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -51,7 +51,7 @@ jobs: pull-requests: write contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - env: pr_branch: ${{ github.event.pull_request.head.ref }} run: |