@@ -114,7 +114,7 @@ jobs:
114114 run : echo "::set-output name=head::$(jq -c .head.sha "${{ steps.configuration.outputs.path }}/${{ env.JSON_IDENTIFIER }}")"
115115
116116 - name : Upload diff file to workflow artifact
117- uses : actions/upload-artifact@v4
117+ uses : actions/upload-artifact@v6
118118 with :
119119 path : ${{ steps.configuration.outputs.path }}/${{ steps.configuration.outputs.filename }}
120120 name : ${{ steps.configuration.outputs.artifact }}
@@ -137,7 +137,7 @@ jobs:
137137 # Checkout the tip of the default branch (this is the action's default ref input value when workflow is triggered
138138 # by an issue_comment or pull_request_target event).
139139 - name : Checkout local repository
140- uses : actions/checkout@v4
140+ uses : actions/checkout@v6
141141
142142 - name : Download submission parser
143143 id : download-parser
@@ -147,7 +147,7 @@ jobs:
147147 location : ${{ runner.temp }}
148148
149149 - name : Download diff
150- uses : actions/download-artifact@v4
150+ uses : actions/download-artifact@v7
151151 with :
152152 path : ${{ needs.diff.outputs.path }}
153153 name : ${{ needs.diff.outputs.artifact }}
@@ -456,7 +456,7 @@ jobs:
456456 # So it's necessary to use an alternative means of indicating that at least one submission failed the checks.
457457 - name : Upload failure flag artifact
458458 if : env.PASS == 'false'
459- uses : actions/upload-artifact@v4
459+ uses : actions/upload-artifact@v6
460460 with :
461461 if-no-files-found : error
462462 include-hidden-files : true
@@ -475,7 +475,7 @@ jobs:
475475
476476 steps :
477477 - name : Download submission check failure flag artifacts
478- uses : actions/download-artifact@v4
478+ uses : actions/download-artifact@v7
479479 with :
480480 path : ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PATH }}
481481 pattern : ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PREFIX }}*
@@ -594,7 +594,7 @@ jobs:
594594
595595 - name : Checkout index source branch
596596 if : steps.merge.outcome == 'success'
597- uses : actions/checkout@v4
597+ uses : actions/checkout@v6
598598 with :
599599 ref : production
600600
0 commit comments