Skip to content

Commit 8f09905

Browse files
Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3f705fd commit 8f09905

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
python -m tox run -m ci -- --junitxml pytest.{envname}.xml
101101
python -m tox run -e cov_combine,cov_report
102102
103-
- uses: actions/upload-artifact@v5
103+
- uses: actions/upload-artifact@v6
104104
with:
105105
name: pytest-report-py${{ matrix.py }}-${{ matrix.os }}
106106
path: pytest.*.xml

.github/workflows/publish_to_pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Check Dists (twine)
2323
run: twine check dist/*
2424

25-
- uses: actions/upload-artifact@v5
25+
- uses: actions/upload-artifact@v6
2626
with:
2727
name: packages
2828
path: dist/*

.github/workflows/publish_to_test_pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Check Dists (twine)
3838
run: twine check dist/*
3939

40-
- uses: actions/upload-artifact@v5
40+
- uses: actions/upload-artifact@v6
4141
with:
4242
name: packages
4343
path: dist/*

0 commit comments

Comments
 (0)