Skip to content

Commit 4712fe3

Browse files
Bump the actions group with 2 updates
Bumps the actions 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: actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8f3b540 commit 4712fe3

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/array-api-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
submodules: 'true'
3434
path: array-api-tests
3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v5
36+
uses: actions/setup-python@v6
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Install Dependencies

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v5
10-
- uses: actions/setup-python@v5
10+
- uses: actions/setup-python@v6
1111
- name: Install Dependencies
1212
run: |
1313
python -m pip install -r docs/requirements.txt

.github/workflows/publish-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fetch-depth: 0
3636

3737
- name: Set up Python
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: '3.x'
4141

@@ -97,14 +97,14 @@ jobs:
9797
# if: >-
9898
# (github.event_name == 'push' && startsWith(github.ref, 'refs/tags'))
9999
# || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true')
100-
# uses: pypa/gh-action-pypi-publish@v1.12.4
100+
# uses: pypa/gh-action-pypi-publish@v1.13.0
101101
# with:
102102
# repository-url: https://test.pypi.org/legacy/
103103
# print-hash: true
104104

105105
- name: Publish distribution 📦 to PyPI
106106
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
107-
uses: pypa/gh-action-pypi-publish@v1.12.4
107+
uses: pypa/gh-action-pypi-publish@v1.13.0
108108
with:
109109
print-hash: true
110110

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- uses: actions/checkout@v5
99
- name: Install Python
10-
uses: actions/setup-python@v5
10+
uses: actions/setup-python@v6
1111
with:
1212
python-version: "3.11"
1313
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
steps:
1919
- uses: actions/checkout@v5
20-
- uses: actions/setup-python@v5
20+
- uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install Dependencies

0 commit comments

Comments
 (0)