Skip to content

Commit 2ab388f

Browse files

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ jobs:
237237
run: cp drm-ffi/drm-sys/src/bindings.rs bindings-${{ matrix.target }}.rs
238238
- name: Upload bindings
239239
if: matrix.task == 'bindings'
240-
uses: actions/upload-artifact@v3
240+
uses: actions/upload-artifact@v4
241241
with:
242-
name: bindings
242+
name: bindings-${{ matrix.target }}-${{ matrix.rust }}
243243
path: bindings-*.rs
244244
- name: Build
245245
uses: actions-rs/cargo@v1
@@ -262,9 +262,10 @@ jobs:
262262
runs-on: ubuntu-22.04
263263
steps:
264264
- name: download bindings
265-
uses: actions/download-artifact@v3
265+
uses: actions/download-artifact@v4
266266
with:
267-
name: bindings
267+
pattern: bindings-*
268+
merge-multiple: true
268269
- name: compare
269270
run: |
270271
code=0
@@ -289,9 +290,10 @@ jobs:
289290
steps:
290291
- uses: actions/checkout@v3
291292
- name: download bindings
292-
uses: actions/download-artifact@v3
293+
uses: actions/download-artifact@v4
293294
with:
294-
name: bindings
295+
pattern: bindings-*
296+
merge-multiple: true
295297
- name: Copy x86_64 bindings
296298
run: |
297299
cp bindings-x86_64-unknown-linux-gnu.rs drm-ffi/drm-sys/src/bindings.rs

0 commit comments

Comments
 (0)