.github/workflows: bump checkout action version

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
This commit is contained in:
Patrick Donnelly 2026-07-27 09:19:24 -04:00
parent 901aad681f
commit 841baf903e
No known key found for this signature in database
GPG Key ID: 053758C0A8A3CE2F
4 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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