From 6aba0888fae3c79f79fdfb553458897466610631 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 22:39:02 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). 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) Updates `pypa/cibuildwheel` from 3.3.0 to 3.3.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.3.0...v3.3.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/pythonbuild.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/pythonbuild.yml b/.github/workflows/pythonbuild.yml index fa3d17d..f945481 100644 --- a/.github/workflows/pythonbuild.yml +++ b/.github/workflows/pythonbuild.yml @@ -45,7 +45,7 @@ jobs: run: | tools/seg_wrapper.sh pytest tests - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: artifact-sdist path: dist/*.tar.gz @@ -63,7 +63,7 @@ jobs: CIBW_BUILD_VERBOSITY: 3 steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: artifact-sdist path: dist @@ -74,13 +74,13 @@ jobs: run: cp dist/*.tar.gz levenshtein.tar.gz - name: Build wheels - uses: pypa/cibuildwheel@v3.3.0 + uses: pypa/cibuildwheel@v3.3.1 with: package-dir: levenshtein.tar.gz output-dir: wheelhouse - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifact-${{ github.job }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl @@ -98,7 +98,7 @@ jobs: CIBW_BUILD_VERBOSITY: 3 steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: artifact-sdist path: dist @@ -109,13 +109,13 @@ jobs: run: cp dist/*.tar.gz levenshtein.tar.gz - name: Build wheels - uses: pypa/cibuildwheel@v3.3.0 + uses: pypa/cibuildwheel@v3.3.1 with: package-dir: levenshtein.tar.gz output-dir: wheelhouse - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifact-${{ github.job }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl @@ -129,7 +129,7 @@ jobs: CIBW_BUILD_VERBOSITY: 3 steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: artifact-sdist path: dist @@ -140,13 +140,13 @@ jobs: run: cp dist/*.tar.gz levenshtein.tar.gz - name: Build wheel - uses: pypa/cibuildwheel@v3.3.0 + uses: pypa/cibuildwheel@v3.3.1 with: package-dir: levenshtein.tar.gz output-dir: wheelhouse - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifact-${{ github.job }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl @@ -165,7 +165,7 @@ jobs: CIBW_BUILD_VERBOSITY: 3 steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: artifact-sdist path: dist @@ -176,13 +176,13 @@ jobs: run: cp dist/*.tar.gz levenshtein.tar.gz - name: Build wheel - uses: pypa/cibuildwheel@v3.3.0 + uses: pypa/cibuildwheel@v3.3.1 with: package-dir: levenshtein.tar.gz output-dir: wheelhouse - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifact-${{ github.job }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl @@ -197,7 +197,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: path: dist pattern: artifact-*