Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact from 4.0.0 to 4.1.0
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.0.0 to 4.1.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and RomanBredehoft committed Jan 15, 2024
1 parent 4504508 commit 7f81901
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_timing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,19 @@ jobs:
poetry run python ./script/actions_utils/monitor.py
- name: Archive figure
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
with:
name: cml_ci_time_evolution.png
path: cml_ci_time_evolution.png

- name: Archive raw data
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
with:
name: github_ci_data.json
path: github_ci_data.json

- name: Archive data used for figure
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
with:
name: github_ci_data.csv
path: github_ci_data.csv
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cifar_benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,37 +142,37 @@ jobs:
-X POST "${{ secrets.NEW_ML_PROGRESS_TRACKER_URL }}experiment"
- name: Archive raw predictions
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.1.0
with:
name: predictions.csv
path: inference_results.csv

- name: Archive metrics
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.1.0
with:
name: metrics.json
path: to_upload.json

- name: Archive MLIR
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.1.0
with:
name: mlir.txt
path: cifar10.mlir

- name: Archive Graph
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.1.0
with:
name: graph.txt
path: cifar10.graph

- name: Archive client
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.1.0
with:
name: client.zip
path: client_server/client.zip

- name: Archive server
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.1.0
with:
name: server.zip
path: client_server/server.zip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ jobs:
- name: Upload docs artifacts
if: ${{ steps.tar-docs.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
with:
name: html-docs
path: docs/_build/html/docs.tar
Expand All @@ -651,7 +651,7 @@ jobs:
- name: Upload changelog artifacts
if: ${{ steps.changelog.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
with:
name: changelog
path: ${{ steps.changelog.outputs.changelog-file }}
Expand All @@ -673,7 +673,7 @@ jobs:
- name: Upload wheel artifacts
if: ${{ steps.build-wheel.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
with:
name: py3-wheel
path: dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
fetch-depth: 0
- name: Save repo
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
with:
name: repo-archive
path: '.'
Expand Down

0 comments on commit 7f81901

Please sign in to comment.