From bf6eacdf25ee6724773749fe3e6400aaaae716a3 Mon Sep 17 00:00:00 2001 From: Adam Lugowski Date: Wed, 20 Dec 2023 20:00:20 -0800 Subject: [PATCH] docs: update to readme example to `upload-artifact` v4 --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 05bf7ef5..eef1aaba 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,9 @@ jobs: # env: # CIBW_SOME_OPTION: value - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl ```