Skip to content

Commit ba397c8

Browse files
Bump the gh_actions group with 2 updates
Bumps the gh_actions group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `pypa/gh-action-pypi-publish` from 1.8.12 to 1.8.14 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.8.12...v1.8.14) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh_actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh_actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2385398 commit ba397c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
# If you're using actions/checkout@v4 you must set persist-credentials to false in most cases for the deployment to work correctly.
3434
persist-credentials: false
35-
- uses: actions/download-artifact@v3
35+
- uses: actions/download-artifact@v4
3636
with:
3737
name: docs-html-${{ github.sha }}
3838
path: docs/build/

.github/workflows/release-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727
# We do this, since failures on test.pypi aren't that bad
2828
- name: Publish to Test PyPI
2929
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
30-
uses: pypa/gh-action-pypi-publish@v1.8.12
30+
uses: pypa/gh-action-pypi-publish@v1.8.14
3131
with:
3232
user: __token__
3333
password: ${{ secrets.test_pypi_password }}
3434
repository_url: https://test.pypi.org/legacy/
3535

3636
- name: Publish distribution 📦 to PyPI
3737
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
38-
uses: pypa/gh-action-pypi-publish@v1.8.12
38+
uses: pypa/gh-action-pypi-publish@v1.8.14
3939
with:
4040
user: __token__
4141
password: ${{ secrets.pypi_password }}

0 commit comments

Comments
 (0)