Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ runs:

- name: Download cache artifact for cm repo
id: download-cache-for-cm-repo
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
if: ${{ env.SKIP_GIT_CLONE == 'true' && fromJSON(fromJSON(inputs.client_payload)).hasCmRepo == true }}
continue-on-error: true
with:
Expand All @@ -108,7 +108,7 @@ runs:

- name: Download cache artifact when cmRepo is false
id: download-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
if: ${{ env.SKIP_GIT_CLONE == 'true' && fromJSON(fromJSON(inputs.client_payload)).hasCmRepo == false}}
continue-on-error: true
with:
Expand Down