Skip to content

Commit

Permalink
NO-ISSUE: Bump 'actions/upload-artifact' to v4 (apache#2745)
Browse files Browse the repository at this point in the history
  • Loading branch information
jomarko authored Nov 14, 2024
1 parent 8531160 commit fd86124
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/upload-ci-reports-and-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,31 +59,31 @@ runs:
ls -la $RUNNER_TEMP
- name: "Upload tests reports"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ runner.os }}_${{ inputs.partition_index }}__tests-reports
path: |
${{ runner.temp }}/tests-reports.zip
- name: "Upload end-to-end tests reports"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ runner.os }}_${{ inputs.partition_index }}__end-to-end-tests-reports
path: |
${{ runner.temp }}/end-to-end-tests-reports.zip
- name: "Upload end-to-end tests artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ runner.os }}_${{ inputs.partition_index }}__end-to-end-tests-artifacts
path: |
${{ runner.temp }}/end-to-end-tests-artifacts.zip
- name: "Upload build artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ runner.os }}_${{ inputs.partition_index }}__build-artifacts
Expand Down

0 comments on commit fd86124

Please sign in to comment.