Skip to content

Commit eac6ce3

Browse files
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [actions/download-artifact](https://github.com/actions/download-artifact) and [pypa/gh-action-pypi-publish@release/v1.12](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 `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `pypa/gh-action-pypi-publish@release/v1.12` from 1.12 to 1.13 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@release/v1.12...release/v1.13) --- 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: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish@release/v1.12 dependency-version: '1.13' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e2fd4c0 commit eac6ce3

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: "3.x"
2121
- name: Install pypa/build
@@ -43,12 +43,12 @@ jobs:
4343
id-token: write # IMPORTANT: mandatory for trusted publishing
4444
steps:
4545
- name: Download all the dists
46-
uses: actions/download-artifact@v4
46+
uses: actions/download-artifact@v5
4747
with:
4848
name: python-package-distributions
4949
path: dist/
5050
- name: Publish distribution 📦 to PyPI
51-
uses: pypa/gh-action-pypi-publish@release/v1.12
51+
uses: pypa/gh-action-pypi-publish@release/v1.13
5252

5353
github-release:
5454
name: >-
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: Download all the dists
67-
uses: actions/download-artifact@v4
67+
uses: actions/download-artifact@v5
6868
with:
6969
name: python-package-distributions
7070
path: dist/
@@ -109,12 +109,12 @@ jobs:
109109

110110
steps:
111111
- name: Download all the dists
112-
uses: actions/download-artifact@v4
112+
uses: actions/download-artifact@v5
113113
with:
114114
name: python-package-distributions
115115
path: dist/
116116
- name: Publish distribution 📦 to TestPyPI
117-
uses: pypa/gh-action-pypi-publish@release/v1.12
117+
uses: pypa/gh-action-pypi-publish@release/v1.13
118118
with:
119119
repository-url: https://test.pypi.org/legacy/
120120
skip-existing: true

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
- 3306:3306
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434

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
allow-prereleases: true
@@ -109,10 +109,10 @@ jobs:
109109
--health-retries 5
110110
111111
steps:
112-
- uses: actions/checkout@v4
112+
- uses: actions/checkout@v5
113113

114114
- name: Set up Python ${{ matrix.python-version }}
115-
uses: actions/setup-python@v5
115+
uses: actions/setup-python@v6
116116
with:
117117
python-version: ${{ matrix.python-version }}
118118
allow-prereleases: true
@@ -158,10 +158,10 @@ jobs:
158158
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
159159

160160
steps:
161-
- uses: actions/checkout@v4
161+
- uses: actions/checkout@v5
162162

163163
- name: Set up Python ${{ matrix.python-version }}
164-
uses: actions/setup-python@v5
164+
uses: actions/setup-python@v6
165165
with:
166166
python-version: ${{ matrix.python-version }}
167167
allow-prereleases: true
@@ -197,10 +197,10 @@ jobs:
197197
fail-fast: false
198198

199199
steps:
200-
- uses: actions/checkout@v4
200+
- uses: actions/checkout@v5
201201

202202
- name: Set up Python ${{ matrix.python-version }}
203-
uses: actions/setup-python@v5
203+
uses: actions/setup-python@v6
204204
with:
205205
python-version: 3.9
206206

0 commit comments

Comments
 (0)