From: Patrick Donnelly Date: Mon, 27 Jul 2026 13:19:24 +0000 (-0400) Subject: .github/workflows: bump checkout action version X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=841baf903e0e8535cca8992d4f57330b18d4a352;p=ceph.git .github/workflows: bump checkout action version Signed-off-by: Patrick Donnelly --- diff --git a/.github/workflows/create-backport-trackers.yml b/.github/workflows/create-backport-trackers.yml index 6ad026abbe6a..af94a9026fb6 100644 --- a/.github/workflows/create-backport-trackers.yml +++ b/.github/workflows/create-backport-trackers.yml @@ -38,7 +38,7 @@ jobs: # Backport checks need to be run ONLY on the main branch on ceph/ceph (not forks) if: github.ref == 'refs/heads/main' && github.repository == 'ceph/ceph' steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: sparse-checkout: | src/script/backport-create-issue diff --git a/.github/workflows/diff-ceph-config.yml b/.github/workflows/diff-ceph-config.yml index 4709163d822c..a0295939c409 100644 --- a/.github/workflows/diff-ceph-config.yml +++ b/.github/workflows/diff-ceph-config.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout main branch for pull_request_target - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: 'refs/heads/main' path: ceph diff --git a/.github/workflows/qa-symlink.yml b/.github/workflows/qa-symlink.yml index 60a8d23909a0..dda2265162d8 100644 --- a/.github/workflows/qa-symlink.yml +++ b/.github/workflows/qa-symlink.yml @@ -22,7 +22,7 @@ jobs: if: github.repository == 'ceph/ceph' steps: - name: Checkout verify-qa script from main branch - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: 'refs/heads/main' path: main @@ -31,7 +31,7 @@ jobs: sparse-checkout-cone-mode: false - name: Checkout PR HEAD - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: ${{ github.event.pull_request.head.sha }} path: pull_request diff --git a/.github/workflows/redmine-upkeep.yml b/.github/workflows/redmine-upkeep.yml index 7e1cb6bf0072..1e81afbbd589 100644 --- a/.github/workflows/redmine-upkeep.yml +++ b/.github/workflows/redmine-upkeep.yml @@ -41,7 +41,7 @@ jobs: steps: - name: Checkout main branch for pull_request_target if: github.event_name == 'pull_request_target' - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: 'refs/heads/main' path: 'ceph' @@ -49,7 +49,7 @@ jobs: - name: Checkout default branch for other events if: github.event_name != 'pull_request_target' - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: path: 'ceph' fetch-depth: 0