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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 1, 2024
1 parent 616eab1 commit 0fead13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
--outdir dist/
.
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python_wheel
path: dist/*
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Generates Executable
run: python -O ./builder/pyinstaller_build_macos.py

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: macos_executable
path: dist/*
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Generates Executable
run: python -O ./builder/pyinstaller_build_ubuntu.py

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ubuntu_executable
path: dist/*
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
run: python -O .\builder\pyinstaller_build_windows.py

- name: Save it as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows_executable
path: dist/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
run: sphinx-build -b html -j auto -d docs/_build/cache -q docs docs/_build/html

- name: Save build doc as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: documentation
path: docs/_build/html/*
Expand Down

0 comments on commit 0fead13

Please sign in to comment.