Skip to content

Commit 4dec80d

Browse files
authored
Updates missed GH upload-artifact action to v4 (#6961)
Follow-up to #6936, where I missed one occurrence of this deprecated action. As noted in the [migration guide](https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md#multiple-uploads-to-the-same-named-artifact), the upload action can no longer be called with the same name more than once within the same workflow, so the matrix values needs to be included in the name.
1 parent 84bf02e commit 4dec80d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ jobs:
211211
--out-dir /tmp/pip_package \
212212
;
213213
- name: 'Upload'
214-
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3.1.1
214+
uses: actions/upload-artifact@v4
215215
with:
216-
name: tensorboard-data-server
216+
name: tensorboard-data-server_${{ matrix.mode }}_${{ matrix.platform }}_${{ matrix.rust_version }}
217217
path: /tmp/pip_package/*
218218

219219
lint-python-flake8:

0 commit comments

Comments
 (0)