Skip to content

Commit 77c0a4e

Browse files
chore(deps): update actions/upload-artifact action to v5
1 parent 2ad617d commit 77c0a4e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-in-devcontainer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ jobs:
228228
229229
- if: ${{ !cancelled() && env.HAS_DEVCONTAINER == 'true' }}
230230
name: Upload sccache logs
231-
uses: actions/upload-artifact@v4
231+
uses: actions/upload-artifact@v5
232232
with:
233233
name: sccache-client-logs-${{ env.BUILD_SLUG }}-${{ env.ARTIFACT_SLUG }}
234234
path: repo/sccache*.log

.github/workflows/conda-cpp-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
run: |
192192
echo "Contents of directory to be uploaded:"
193193
ls -R "${CONDA_OUTPUT_DIR}"
194-
- uses: actions/upload-artifact@v4
194+
- uses: actions/upload-artifact@v5
195195
if: ${{ inputs.upload-artifacts }}
196196
with:
197197
if-no-files-found: 'error'

.github/workflows/conda-python-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
run: |
195195
echo "Contents of directory to be uploaded:"
196196
ls -R "${CONDA_OUTPUT_DIR}"
197-
- uses: actions/upload-artifact@v4
197+
- uses: actions/upload-artifact@v5
198198
if: ${{ inputs.upload-artifacts }}
199199
with:
200200
if-no-files-found: 'error'

.github/workflows/custom-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
GH_TOKEN: ${{ inputs.alternative-gh-token-secret-name && secrets[inputs.alternative-gh-token-secret-name] || github.token }} # zizmor: ignore[overprovisioned-secrets]
171171
INPUTS_SCRIPT: ${{ inputs.script }}
172172
- name: Upload file to GitHub Artifact
173-
uses: actions/upload-artifact@v4
173+
uses: actions/upload-artifact@v5
174174
with:
175175
name: ${{ inputs.artifact-name }}
176176
path: ${{ inputs.file_to_upload }}

.github/workflows/wheels-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ jobs:
277277
echo "Contents of directory to be uploaded:"
278278
ls -R "$WHEEL_OUTPUT_DIR"
279279
280-
- uses: actions/upload-artifact@v4
280+
- uses: actions/upload-artifact@v5
281281
if: ${{ inputs.upload-artifacts }}
282282
with:
283283
if-no-files-found: 'error'

0 commit comments

Comments
 (0)