Skip to content

Commit 0bc04ab

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [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/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) 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/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-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: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 619c92c commit 0bc04ab

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
# need to run on mac.
2828
os: [ubuntu-latest, macos-latest]
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: Set up Python
32-
uses: actions/setup-python@v5
32+
uses: actions/setup-python@v6
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535
cache: 'pip'
@@ -121,9 +121,9 @@ jobs:
121121
# required for all workflows
122122
security-events: write
123123
steps:
124-
- uses: actions/checkout@v4
124+
- uses: actions/checkout@v5
125125
- name: Set up Python
126-
uses: actions/setup-python@v5
126+
uses: actions/setup-python@v6
127127
with:
128128
python-version: "3.10"
129129
cache: 'pip'
@@ -150,9 +150,9 @@ jobs:
150150
name: RiscV 64
151151
steps:
152152
- name: checkout
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@v5
154154
- name: Set up Python
155-
uses: actions/setup-python@v5
155+
uses: actions/setup-python@v6
156156
with:
157157
python-version: "3.13"
158158
- name: Set up QEMU
@@ -183,9 +183,9 @@ jobs:
183183

184184
steps:
185185
- name: checkout
186-
uses: actions/checkout@v4
186+
uses: actions/checkout@v5
187187
- name: Set up Python ${{ matrix.python-version }}
188-
uses: actions/setup-python@v5
188+
uses: actions/setup-python@v6
189189
with:
190190
python-version: ${{ matrix.python-version }}
191191
- name: Set up QEMU
@@ -202,7 +202,7 @@ jobs:
202202
path: wheelhouse/*whl
203203
name: ${{ matrix.image }}_wheels.zip
204204
- name: Publish package to PyPI
205-
uses: pypa/gh-action-pypi-publish@v1.12.4
205+
uses: pypa/gh-action-pypi-publish@v1.13.0
206206
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
207207
with:
208208
user: __token__

0 commit comments

Comments
 (0)