Skip to content

Commit

Permalink
Bump upload/download-artifact version to v4 (#6224)
Browse files Browse the repository at this point in the history
  • Loading branch information
mudit2812 committed Sep 5, 2024
1 parent e3cabd7 commit 3482df3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/interface-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ jobs:
ref: ${{ inputs.branch }}

- name: Down Coverage Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Upload to Codecov
uses: codecov/codecov-action@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:

- name: Upload Durations file as artifact
if: ${{ inputs.pytest_store_durations == true }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.job_name }}-durations.json
path: ${{ inputs.pytest_durations_file_path }}
Expand All @@ -209,7 +209,7 @@ jobs:

- name: Upload Coverage File
if: inputs.pipeline_mode == 'unit-tests'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.coverage_artifact_name }}
path: coverage.xml
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
# If this is an assessment benchmark, upload the data as an artifact.
- name: Upload pytest benchmark results
if: inputs.pipeline_mode == 'benchmarks'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.benchmark_name.outputs.benchmark_name }}-benchmarks
path: ${{ github.workspace }}/benchmark_results
4 changes: 2 additions & 2 deletions .github/workflows/upload-nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
python -m pip install build
python -m build --wheel --outdir dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: nightly-wheels
path: ./dist/*.whl
Expand All @@ -46,7 +46,7 @@ jobs:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: nightly-wheels
path: dist
Expand Down

0 comments on commit 3482df3

Please sign in to comment.