mirror of
https://github.com/Steffo99/cfig.git
synced 2024-11-21 15:34:20 +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:
parent
42b182e515
commit
29bc755401
2 changed files with 3 additions and 3 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -35,14 +35,14 @@ jobs:
|
||||||
run: poetry build --no-interaction
|
run: poetry build --no-interaction
|
||||||
|
|
||||||
- name: "⬆️ Upload code package to artifacts"
|
- name: "⬆️ Upload code package to artifacts"
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "Build"
|
name: "Build"
|
||||||
path: dist/*.tar.gz
|
path: dist/*.tar.gz
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: "⬆️ Upload wheel package to artifacts"
|
- name: "⬆️ Upload wheel package to artifacts"
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "Build"
|
name: "Build"
|
||||||
path: dist/*.whl
|
path: dist/*.whl
|
||||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
||||||
pytest --verbose --cov=. --cov-report=html
|
pytest --verbose --cov=. --cov-report=html
|
||||||
|
|
||||||
- name: "⬆️ Upload coverage"
|
- name: "⬆️ Upload coverage"
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "Coverage"
|
name: "Coverage"
|
||||||
path: htmlcov
|
path: htmlcov
|
||||||
|
|
Loading…
Reference in a new issue