Skip to content

Commit ac6b702

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 08d1f58 commit ac6b702

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
uses: pypa/[email protected]
6666

6767
- name: Upload artifacts
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
with:
7070
name: ${{ matrix.os }}-wheel-artifact
7171
path: ./wheelhouse/*.whl
@@ -88,7 +88,7 @@ jobs:
8888
run: python -m build --sdist .
8989

9090
- name: Upload sdist
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v5
9292
with:
9393
name: src-artifact
9494
path: dist/*

.github/workflows/pythonapp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ jobs:
8383
python -m sphinx -W -b html source build/html
8484
rm -rf build/html/.doctrees
8585
- name: Upload C++ documentation artifact
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: doc-cpp-${{ matrix.python-version }}
8989
path: |
9090
doc/cpp/html
9191
retention-days: 2
9292
if-no-files-found: error
9393
- name: Upload Python documentation artifact
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v5
9595
with:
9696
name: doc-python-${{ matrix.python-version }}
9797
path: |

0 commit comments

Comments
 (0)