Skip to content

Commit 312eb88

Browse files
build(deps): bump the gha-updates group with 2 updates (#130)
Bumps the gha-updates group with 2 updates: [actions/setup-python](https://github.com/actions/setup-python) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.12.4...v1.13.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha-updates ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 80015ba commit 312eb88

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-cloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- uses: actions/checkout@v5
53-
- uses: actions/setup-python@v5
53+
- uses: actions/setup-python@v6
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
cache: "pip"

.github/workflows/ci-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v5
3838
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@v5
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
cache: "pip"

.github/workflows/release-pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v5
17-
- uses: actions/setup-python@v5
17+
- uses: actions/setup-python@v6
1818
with:
1919
python-version: "3.10"
2020

@@ -28,15 +28,15 @@ jobs:
2828
# We do this, since failures on test.pypi aren't that bad
2929
- name: Publish to Test PyPI
3030
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
31-
uses: pypa/gh-action-pypi-publish@v1.12.4
31+
uses: pypa/gh-action-pypi-publish@v1.13.0
3232
with:
3333
user: __token__
3434
password: ${{ secrets.TEST_PYPI_PASSWORD }}
3535
repository-url: https://test.pypi.org/legacy/
3636

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

0 commit comments

Comments
 (0)