Skip to content

Commit 0f72022

Browse files
Update GitHub Artifact Actions (#17)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 91306cb commit 0f72022

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/dawn-build-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- name: Download artifact bundles
58-
uses: actions/download-artifact@v5
58+
uses: actions/download-artifact@v6
5959
with:
6060
artifact-ids: ${{ needs.build-dawn-debug.outputs.artifact_id }},${{ needs.build-dawn-release.outputs.artifact_id }}
6161
path: dawn-bundles

.github/workflows/dawn.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
python ci_build_dawn.py build-target --target ${{ matrix.target }} --config ${{ inputs.config }}
8686
8787
- name: Upload build artifacts
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v5
8989
with:
9090
name: dawn-build-${{ matrix.target }}-${{ inputs.config }}
9191
path: |
@@ -95,7 +95,7 @@ jobs:
9595

9696
- name: Upload dawn.json
9797
if: matrix.platform == 'ubuntu-latest'
98-
uses: actions/upload-artifact@v4
98+
uses: actions/upload-artifact@v5
9999
with:
100100
name: dawn-json
101101
path: Dawn/dawn_source/src/dawn/dawn.json
@@ -124,13 +124,13 @@ jobs:
124124
pip install -r requirements.txt
125125
126126
- name: Download dawn.json
127-
uses: actions/download-artifact@v5
127+
uses: actions/download-artifact@v6
128128
with:
129129
name: dawn-json
130130
path: Dawn/dawn_source/src/dawn
131131

132132
- name: Download all build artifacts
133-
uses: actions/download-artifact@v5
133+
uses: actions/download-artifact@v6
134134
with:
135135
pattern: dawn-build-*-${{ inputs.config }}
136136
path: Dawn/builds/
@@ -143,7 +143,7 @@ jobs:
143143
144144
- name: Store artifact bundle
145145
id: store-artifact-bundle
146-
uses: actions/upload-artifact@v4
146+
uses: actions/upload-artifact@v5
147147
with:
148148
name: dawn-bundle-${{ inputs.config }}
149149
path: Dawn/dist/${{ inputs.bundle_name }}.zip

0 commit comments

Comments
 (0)