Pyzotero: a Python client for the Zotero API pyzotero.readthedocs.io
zotero

Bump the gha-updates group with 2 updates

Bumps the gha-updates group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/upload-artifact` from 5 to 6
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v5...v6)

Updates `actions/download-artifact` from 6 to 7
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: gha-updates
- dependency-name: actions/download-artifact
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: gha-updates
...

Signed-off-by: dependabot[bot] <support@github.com>

authored by

dependabot[bot] and committed by urschrei.eurosky.social fa946af0 60bd355f

+5 -5
+5 -5
.github/workflows/tests.yml
··· 53 53 - name: Build wheel 54 54 run: uv build --no-sources --wheel -o dist 55 55 56 - - uses: actions/upload-artifact@v5 56 + - uses: actions/upload-artifact@v6 57 57 name: Upload wheel as artifact 58 58 with: 59 59 name: wheels-py${{ matrix.python-version }} 60 60 path: | 61 61 ./dist/*.whl 62 62 63 - - uses: actions/upload-artifact@v5 63 + - uses: actions/upload-artifact@v6 64 64 name: Upload test results 65 65 if: always() 66 66 with: ··· 81 81 - name: Build SDist 82 82 run: uv build --no-sources --sdist -o dist 83 83 84 - - uses: actions/upload-artifact@v5 84 + - uses: actions/upload-artifact@v6 85 85 with: 86 86 name: sdist 87 87 path: dist/*.tar.gz ··· 112 112 - uses: actions/checkout@v6 113 113 114 114 - name: Download wheel artifacts 115 - uses: actions/download-artifact@v6 115 + uses: actions/download-artifact@v7 116 116 with: 117 117 pattern: wheels-* 118 118 path: ./artifacts 119 119 merge-multiple: true 120 120 121 121 - name: Download sdist artifact 122 - uses: actions/download-artifact@v6 122 + uses: actions/download-artifact@v7 123 123 with: 124 124 name: sdist 125 125 path: ./artifacts