From 541b3653df8a452bfe48b4e6d4ea03cbb8dc27eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 18:42:34 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/default.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 9010a75..5d296c0 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -33,7 +33,7 @@ jobs: if: ${{ runner.os == 'Linux' }} run: python -m build --sdist - name: upload sdist (Linux) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ runner.os == 'Linux' }} with: name: sdist @@ -42,7 +42,7 @@ jobs: - name: build binary wheels uses: pypa/cibuildwheel@v2.17.0 - name: upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: bdist path: ./wheelhouse/*.whl