Skip to content

Commit dec9f56

Browse files
dependabot[bot]patacca
authored andcommitted
Bump the python group across 1 directory with 4 updates
Bumps the python group with 4 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact), [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) Updates `pypa/gh-action-pypi-publish` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.13.0...v1.14.0) Updates `softprops/action-gh-release` from 2.5.0 to 2.6.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v2.5.0...v2.6.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: python - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: python - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python - dependency-name: softprops/action-gh-release dependency-version: 2.6.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d710bcc commit dec9f56

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: pip install build
1919
- name: Build wheel and sdist
2020
run: python -m build
21-
- uses: actions/upload-artifact@v6
21+
- uses: actions/upload-artifact@v7
2222
with:
2323
name: artifact
2424
path: |
@@ -29,20 +29,20 @@ jobs:
2929
needs: build_wheel_and_sdist
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/download-artifact@v7
32+
- uses: actions/download-artifact@v8
3333
with:
3434
# unpacks default artifact into dist/
3535
# if `name: artifact` is omitted, the action will create extra parent dir
3636
name: artifact
3737
path: dist
3838

3939
- name: Publish a Python distribution to PyPI
40-
uses: pypa/gh-action-pypi-publish@v1.13.0
40+
uses: pypa/gh-action-pypi-publish@v1.14.0
4141
with:
4242
password: ${{ secrets.PYPI_DEPLOY_TOKEN }}
4343

4444
- name: Upload Python packages for release notes
45-
uses: softprops/action-gh-release@v2.5.0
45+
uses: softprops/action-gh-release@v2.6.1
4646
with:
4747
files: |
4848
dist/*

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Generate coverage
3232
run: tox run -e py310-coverage -- -s --cov-report=term
3333

34-
- uses: actions/upload-artifact@v6
34+
- uses: actions/upload-artifact@v7
3535
with:
3636
name: coverage
3737
path: ./htmlcov

0 commit comments

Comments
 (0)