Skip to content

Commit fe8c5a2

Browse files
Bump the github-actions group with 5 updates (#1016)
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package) | `1.5` | `2.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `2` | `5` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.8.5` | `1.8.11` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `hynek/build-and-inspect-python-package` from 1.5 to 2.0 - [Release notes](https://github.com/hynek/build-and-inspect-python-package/releases) - [Changelog](https://github.com/hynek/build-and-inspect-python-package/blob/main/CHANGELOG.md) - [Commits](hynek/build-and-inspect-python-package@v1.5...v2.0) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...v5) Updates `pypa/gh-action-pypi-publish` from 1.8.5 to 1.8.11 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.8.5...v1.8.11) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: hynek/build-and-inspect-python-package dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c2d31f5 commit fe8c5a2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/deploy.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ github.event.inputs.version }}
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Build and Check Package
22-
uses: hynek/build-and-inspect-python-package@v1.5
22+
uses: hynek/build-and-inspect-python-package@v2.0
2323

2424
deploy:
2525
needs: package
@@ -30,16 +30,16 @@ jobs:
3030
contents: write # For tag.
3131

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

3535
- name: Download Package
36-
uses: actions/download-artifact@v3
36+
uses: actions/download-artifact@v4
3737
with:
3838
name: Packages
3939
path: dist
4040

4141
- name: Publish package to PyPI
42-
uses: pypa/[email protected].5
42+
uses: pypa/[email protected].11
4343

4444
- name: Push tag
4545
run: |

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
package:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- name: Build and Check Package
25-
uses: hynek/build-and-inspect-python-package@v1.5
25+
uses: hynek/build-and-inspect-python-package@v2.0
2626

2727
test:
2828

@@ -66,19 +66,19 @@ jobs:
6666
python: "3.10"
6767

6868
steps:
69-
- uses: actions/checkout@v3
69+
- uses: actions/checkout@v4
7070
with:
7171
# Needed to fetch tags, which are required by setuptools-scm.
7272
fetch-depth: 0
7373

7474
- name: Download Package
75-
uses: actions/download-artifact@v3
75+
uses: actions/download-artifact@v4
7676
with:
7777
name: Packages
7878
path: dist
7979

8080
- name: Set up Python
81-
uses: actions/setup-python@v2
81+
uses: actions/setup-python@v5
8282
with:
8383
python-version: ${{ matrix.python }}
8484

0 commit comments

Comments
 (0)