1
Fork 0
mirror of https://github.com/Steffo99/cfig.git synced 2024-10-16 14:27:38 +00:00

🔨️ (deps): 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] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-12-15 08:55:44 +00:00 committed by Stefano Pigozzi
parent 42b182e515
commit 29bc755401
2 changed files with 3 additions and 3 deletions

View file

@ -35,14 +35,14 @@ jobs:
run: poetry build --no-interaction
- name: "⬆️ Upload code package to artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "Build"
path: dist/*.tar.gz
if-no-files-found: error
- name: "⬆️ Upload wheel package to artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "Build"
path: dist/*.whl

View file

@ -58,7 +58,7 @@ jobs:
pytest --verbose --cov=. --cov-report=html
- name: "⬆️ Upload coverage"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "Coverage"
path: htmlcov