Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and fd0r committed Feb 12, 2024
1 parent f19d5fb commit 19ba423
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@26f96dfa697d77e81fd5907df203aa23a56210a8
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
name: cml_ci_time_evolution.png
path: cml_ci_time_evolution.png

- name: Archive raw data
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
name: github_ci_data.json
path: github_ci_data.json

- name: Archive data used for figure
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
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 @@ -109,37 +109,37 @@ jobs:
python3 ./benchmarks/convert_cifar.py --model-name "16-bits-trained-v0"
- name: Archive raw predictions
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: predictions.csv
path: inference_results.csv

- name: Archive metrics
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: metrics.json
path: to_upload.json

- name: Archive MLIR
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: mlir.txt
path: cifar10.mlir

- name: Archive Graph
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: graph.txt
path: cifar10.graph

- name: Archive client
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: client.zip
path: client_server/client.zip

- name: Archive server
uses: actions/[email protected].0
uses: actions/[email protected].1
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 @@ -627,7 +627,7 @@ jobs:
- name: Upload docs artifacts
if: ${{ steps.tar-docs.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
name: html-docs
path: docs/_build/html/docs.tar
Expand All @@ -652,7 +652,7 @@ jobs:
- name: Upload changelog artifacts
if: ${{ steps.changelog.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
name: changelog
path: ${{ steps.changelog.outputs.changelog-file }}
Expand All @@ -674,7 +674,7 @@ jobs:
- name: Upload wheel artifacts
if: ${{ steps.build-wheel.outcome == 'success' && !cancelled() }}
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
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@26f96dfa697d77e81fd5907df203aa23a56210a8
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
name: repo-archive
path: '.'
Expand Down

0 comments on commit 19ba423

Please sign in to comment.