Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/bandit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
bandit -c bandit.yaml -r ./benchmarks/ ./scripts/ ./third_party/intel/ --exit-zero -f html -o bandit_report.html

- name: Upload report to artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Bandit Report
path: bandit_report.html
12 changes: 6 additions & 6 deletions .github/workflows/build-test-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ jobs:
dest: ${{ steps.pip-cache.outputs.dest }}

- name: Upload Triton wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: triton-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
path: dist/*.whl

- name: Upload test reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-reports-build-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
include-hidden-files: true
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:
dest: ${{ steps.pip-cache.outputs.dest }}

- name: Upload test reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-reports-${{ matrix.suite }}-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
include-hidden-files: true
Expand Down Expand Up @@ -433,20 +433,20 @@ jobs:
python scripts/pass_rate.py --reports reports --suite tutorials --json > pass_rate_tutorials.json

- name: Upload pass rate report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pass_rate-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
path: pass_rate*.json

- name: Upload tutorials test report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-reports-tutorials-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
include-hidden-files: true
path: reports/tutorials.xml

- name: Upload tutorials performance report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: tutorials-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
if-no-files-found: warn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,13 @@ jobs:
- name: Upload pass rate report
# upload reports only for the default branch
if: github.ref_name == 'main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pass_rate
path: ${{ env.NEW_WORKSPACE }}\pass_rate*.json

- name: Upload tutorial performance
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: tutorials-report
if-no-files-found: warn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
files: dist/${{env.RELEASE_FILE}}
- name: Upload source distribution to GHA artifacts for release tags
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'rc') }}
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v5
with:
name: ${{ env.RELEASE_FILE }}
path: dist/${{ env.RELEASE_FILE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-accuracy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
--output-dir aggregated-results

- name: Upload aggregated results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: aggregated-results-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ jobs:
fi

- name: Upload test logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: logs-${{ inputs.suite }}-${{ inputs.dtype }}-${{ inputs.mode }}-${{ inputs.test_mode }}
path: inductor_log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ jobs:
EOF

- name: Upload test logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: logs
path: ${{ env.NEW_WORKSPACE }}\inductor_log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/inductor-tests-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Upload test logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: logs-${{ env.PYTHON_VERSION }}
path: pytorch/test/test-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/inductor-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:

- name: Upload test logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: logs-${{ env.PYTHON_VERSION }}
path: ${{ env.NEW_WORKSPACE }}\pytorch\test\test-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/llvm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
docker rm "${CONTAINER_ID}"

- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: llvm-${{ matrix.config.target-os }}-${{ matrix.config.arch }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
EOF

- name: Upload PyTorch wheels to artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-pytorch-py${{ matrix.python }}-${{ env.TIMESTAMP }}
path: wheels
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Upload pass rate report
# upload reports only for the default branch
if: github.ref_name == 'main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pass_rate
path: ${{ env.NEW_WORKSPACE }}\pass_rate*.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/third-party-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:

- name: Upload benchmark reports
if: ${{ steps.install.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmark-reports
path: reports
4 changes: 2 additions & 2 deletions .github/workflows/third-party-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Upload test report
if: ${{ steps.install.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-main-reports
path: reports
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:

- name: Upload test report
if: ${{ steps.install.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-liger-reports
path: reports
2 changes: 1 addition & 1 deletion .github/workflows/triton-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ jobs:

- name: Upload benchmark reports
if: ${{ steps.install.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmark-reports
path: reports
2 changes: 1 addition & 1 deletion .github/workflows/wheels-pytorch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
echo "WHEELS_NAME=$WHEELS_NAME" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.WHEELS_NAME }}
path: ${{ env.NEW_WORKSPACE }}\pytorch\wheelhouse\*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels-triton.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
echo "WHEELS_NAME=$WHEELS_NAME" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.WHEELS_NAME }}
path: ${{ env.NEW_WORKSPACE }}\wheelhouse\*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
export CIBW_ENABLE=cpython-freethreading
python3 -m cibuildwheel . --output-dir wheelhouse

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: cibw-wheels-manylinux_2_28_${{ matrix.config.arch }}-wheels-upload
path: ./wheelhouse/*.whl
Expand Down
Loading