From eb2c422763b09a3b94dfaae6684dddef0298df9d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 11:06:19 -0500 Subject: [PATCH] chore(deps): update actions/checkout action to v7 (#5848) --- .github/workflows/create-or-promote-release.yml | 4 ++-- .github/workflows/dependency-submission.yml | 2 +- .github/workflows/docs-deploy.yml | 2 +- .github/workflows/docs-governance.yml | 6 +++--- .github/workflows/docs-release.yml | 2 +- .github/workflows/moderate.yml | 2 +- .github/workflows/post-release-cleanup.yml | 2 +- .github/workflows/promote.yml | 6 +++--- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/release.yml | 12 ++++++------ .github/workflows/reusable-check.yml | 16 ++++++++-------- .github/workflows/scheduled-updates.yml | 2 +- .github/workflows/sync-android-docs.yml | 2 +- .github/workflows/update-changelog.yml | 2 +- .github/workflows/verify-flatpak.yml | 4 ++-- .../extensions/review/.github/workflows/ci.yml | 6 +++--- 16 files changed, 37 insertions(+), 37 deletions(-) diff --git a/.github/workflows/create-or-promote-release.yml b/.github/workflows/create-or-promote-release.yml index 62177760e..2af583a4a 100644 --- a/.github/workflows/create-or-promote-release.yml +++ b/.github/workflows/create-or-promote-release.yml @@ -38,7 +38,7 @@ jobs: from_channel: ${{ steps.calculate_tags.outputs.from_channel }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 0 token: ${{ secrets.CROWDIN_GITHUB_TOKEN }} @@ -148,7 +148,7 @@ jobs: runs-on: ubuntu-24.04-arm steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 0 - name: Delete Failed or Cancelled Tag diff --git a/.github/workflows/dependency-submission.yml b/.github/workflows/dependency-submission.yml index 10535d723..5a8d203c3 100644 --- a/.github/workflows/dependency-submission.yml +++ b/.github/workflows/dependency-submission.yml @@ -14,7 +14,7 @@ jobs: if: github.repository == 'meshtastic/Meshtastic-Android' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 - uses: actions/setup-java@v5 with: distribution: temurin diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index 784fc47b7..a941eaf00 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: submodules: true fetch-depth: 0 diff --git a/.github/workflows/docs-governance.yml b/.github/workflows/docs-governance.yml index a45e5aed2..3747bb3d1 100644 --- a/.github/workflows/docs-governance.yml +++ b/.github/workflows/docs-governance.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 @@ -161,7 +161,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ github.event.pull_request.head.sha || github.sha }} fetch-depth: 1 @@ -210,7 +210,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/docs-release.yml b/.github/workflows/docs-release.yml index 743e7a45f..4a7cc35c8 100644 --- a/.github/workflows/docs-release.yml +++ b/.github/workflows/docs-release.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: submodules: true fetch-depth: 0 diff --git a/.github/workflows/moderate.yml b/.github/workflows/moderate.yml index 718fe4e08..b867eeddc 100644 --- a/.github/workflows/moderate.yml +++ b/.github/workflows/moderate.yml @@ -12,7 +12,7 @@ jobs: models: read contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 - uses: github/ai-moderator@v1 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/post-release-cleanup.yml b/.github/workflows/post-release-cleanup.yml index 463a5bb11..531d8552e 100644 --- a/.github/workflows/post-release-cleanup.yml +++ b/.github/workflows/post-release-cleanup.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-24.04-arm steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 0 diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index 70287d6a3..da1915387 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -72,7 +72,7 @@ jobs: APP_VERSION_CODE: ${{ steps.calculate_version_code.outputs.versionCode }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.commit_sha || inputs.tag_name }} fetch-depth: 0 @@ -111,7 +111,7 @@ jobs: USER_FRACTION: ${{ (inputs.channel == 'production' && '0.1') || (inputs.channel == 'open' && '0.5') || '1.0' }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.commit_sha || inputs.tag_name }} @@ -145,7 +145,7 @@ jobs: needs: [ prepare-build-info, promote-release ] steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.commit_sha || inputs.tag_name }} fetch-depth: 0 diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 2ce18a8b7..52253677e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -20,7 +20,7 @@ jobs: outputs: android: ${{ steps.filter.outputs.android }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 - uses: dorny/paths-filter@v4 id: filter with: @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-24.04-arm timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 - name: Verify module roots are represented in check-changes filter run: | python3 - <<'PY' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40c0e032f..6a72d04fa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,7 +89,7 @@ jobs: GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.tag_name }} fetch-depth: 0 @@ -127,7 +127,7 @@ jobs: GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.tag_name }} fetch-depth: 0 @@ -211,7 +211,7 @@ jobs: GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.tag_name }} fetch-depth: 0 @@ -275,7 +275,7 @@ jobs: GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.tag_name }} fetch-depth: 0 @@ -359,7 +359,7 @@ jobs: GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.tag_name }} fetch-depth: 0 @@ -453,7 +453,7 @@ jobs: attestations: write steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: ${{ inputs.tag_name }} diff --git a/.github/workflows/reusable-check.yml b/.github/workflows/reusable-check.yml index f7280565b..07627f405 100644 --- a/.github/workflows/reusable-check.yml +++ b/.github/workflows/reusable-check.yml @@ -61,7 +61,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 0 filter: 'blob:none' @@ -98,7 +98,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 0 filter: 'blob:none' @@ -132,7 +132,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 1 submodules: true @@ -166,7 +166,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 1 submodules: true @@ -415,7 +415,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 1 submodules: true @@ -477,7 +477,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 1 submodules: true @@ -525,7 +525,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 1 submodules: true @@ -566,7 +566,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 1 submodules: true diff --git a/.github/workflows/scheduled-updates.yml b/.github/workflows/scheduled-updates.yml index 0e343e074..7789b764d 100644 --- a/.github/workflows/scheduled-updates.yml +++ b/.github/workflows/scheduled-updates.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: token: ${{ secrets.CROWDIN_GITHUB_TOKEN }} diff --git a/.github/workflows/sync-android-docs.yml b/.github/workflows/sync-android-docs.yml index e312f2662..a01a12307 100644 --- a/.github/workflows/sync-android-docs.yml +++ b/.github/workflows/sync-android-docs.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout meshtastic/meshtastic - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: fetch-depth: 1 diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml index b6cfee0a3..84c75807e 100644 --- a/.github/workflows/update-changelog.yml +++ b/.github/workflows/update-changelog.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-24.04-arm steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.0 with: ref: main fetch-depth: 0 diff --git a/.github/workflows/verify-flatpak.yml b/.github/workflows/verify-flatpak.yml index c70848952..982c8fe13 100644 --- a/.github/workflows/verify-flatpak.yml +++ b/.github/workflows/verify-flatpak.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 20 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 with: submodules: recursive @@ -61,7 +61,7 @@ jobs: arch: [x86_64, aarch64] fail-fast: false steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 with: submodules: recursive diff --git a/.specify/extensions/review/.github/workflows/ci.yml b/.specify/extensions/review/.github/workflows/ci.yml index bae84f222..eb59cbe7d 100644 --- a/.specify/extensions/review/.github/workflows/ci.yml +++ b/.specify/extensions/review/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: name: Validate Manifest & Commands runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 - name: Check required files run: | @@ -198,7 +198,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 with: submodules: recursive @@ -220,7 +220,7 @@ jobs: name: Validate & Test PowerShell Scripts runs-on: windows-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7.0.0 - name: Check PowerShell scripts syntax shell: pwsh