Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Dec 15, 2023
1 parent be92b35 commit 147b835
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build sdist
run: |
python -m build --sdist --outdir ./dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: WHEEL
path: dist/*.tar.gz
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
for f in *.whl; do ${{matrix.python}} -m auditwheel repair -w ../wheelhouse $f; done
cd ../wheelhouse
du -ah ./
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: WHEEL
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
source scl_source enable gcc-toolset-11 &&
pip install pybind11 cmake ninja
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: WHEEL
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
CIBW_PLATFORM: ${{ matrix.CIBW_PLATFORM }}
CIBW_ARCHS: ${{matrix.arch}}
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: WHEEL
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: WHEEL
path: ./wheelhouse/*.whl
Expand Down

0 comments on commit 147b835

Please sign in to comment.