From 5824f3d2c3c5c63de9fba3674a8368a7cceb41bf Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Fri, 30 Jan 2026 15:28:41 -0600 Subject: [PATCH] test default checkout depth --- .github/workflows/rocm-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rocm-ci.yml b/.github/workflows/rocm-ci.yml index c8d655330..00a846773 100644 --- a/.github/workflows/rocm-ci.yml +++ b/.github/workflows/rocm-ci.yml @@ -49,10 +49,10 @@ jobs: runner: [linux-mi325-8, linux-mi355-8] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: 'recursive' - fetch-depth: 0 + fetch-tags: 'true' - name: Host Diagnostics & Environment Setup id: host-setup @@ -78,7 +78,7 @@ jobs: # Default to input (or '1' if input is missing/null) CALC_LEVEL="${{ inputs.test_level || '1' }}" - # COnly force Level 3 if this is a direct PUSH to dev or a release branch + # Only force Level 3 if this is a direct PUSH to dev or a release branch if [[ "${{ github.event_name }}" == "push" ]]; then if [[ "${{ github.ref_name }}" == "dev" || "${{ github.ref_name }}" =~ ^release_v.*_rocm$ ]]; then echo "::notice::Push to monitored branch (${{ github.ref_name }}) detected. Forcing Level 3."