Skip to content

Commit b72e62f

Browse files
authored
Upgrade actions/upload-artifact from v3 to v4 (shader-slang#6051)
The version 3 of actions/upload-artifact will be deprecated soon. https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ This commit upgrades to v4. There is a document describing how to migrate/upgrade: https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md The breaking change on v4 is that the uploaded files are immutable and we can no longer append files with the same name. We don't seem to be doing it so it should be fine for us. Closes shader-slang#6050
1 parent 87f00a3 commit b72e62f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
-emit-spirv-via-glsl \
197197
-api vk \
198198
-expected-failure-list tests/expected-failure.txt
199-
- uses: actions/upload-artifact@v3
199+
- uses: actions/upload-artifact@v4
200200
if: steps.filter.outputs.should-run == 'true' && ! matrix.full-gpu-tests
201201
with:
202202
name: slang-build-${{matrix.os}}-${{matrix.platform}}-${{matrix.compiler}}-${{matrix.config}}

0 commit comments

Comments
 (0)