From eda3a031bcf113cd2866bbcb361419587c70a3f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 06:05:28 +0000 Subject: [PATCH] ci: bump the ci group with 2 updates Bumps the ci 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: ci - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31108949..ac4114ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: run: cmake --build build --config Release - name: Upload Artifact (C++) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: cpp-dist-${{matrix.os}} path: | @@ -51,7 +51,7 @@ jobs: run: cmake --build build --config Release - name: Upload Artifact (C) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: c-dist-${{matrix.os}} path: | @@ -84,7 +84,7 @@ jobs: pipx run twine check dist/* - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: python-dist-sdist path: '${{github.workspace}}/lang/python/dist/*.tar.gz' @@ -118,7 +118,7 @@ jobs: python -m cibuildwheel --output-dir dist - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: python-dist-bdist-${{matrix.os}} path: '${{github.workspace}}/lang/python/dist/*.whl' @@ -137,7 +137,7 @@ jobs: id-token: write steps: - name: Download Wheels - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: pattern: python-dist-* path: dist @@ -158,7 +158,7 @@ jobs: contents: write steps: - name: Download Artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: pattern: '*-dist-*' path: dist/