Skip to content

Commit c021000

Browse files
Bump the github-actions group with 4 updates (#79)
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact), [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) and [actions/setup-python](https://github.com/actions/setup-python). 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 `actions/download-artifact` from 4.1.7 to 5.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4.1.7...v5.0.0) Updates `pypa/gh-action-pypi-publish` from 1.10.0 to 1.12.4 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.10.0...v1.12.4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.12.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major 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 4509e68 commit c021000

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ 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
2222
uses: hynek/[email protected]
@@ -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@v4.1.7
36+
uses: actions/download-artifact@v5.0.0
3737
with:
3838
name: Packages
3939
path: dist
4040

4141
- name: Publish package to PyPI
42-
uses: pypa/gh-action-pypi-publish@v1.10.0
42+
uses: pypa/gh-action-pypi-publish@v1.12.4
4343
with:
4444
attestations: true
4545

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
package:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Build and Check Package
2424
uses: hynek/[email protected]
2525

@@ -35,16 +35,16 @@ jobs:
3535
os: [ubuntu-latest, windows-latest]
3636

3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939

4040
- name: Download Package
41-
uses: actions/download-artifact@v4.1.7
41+
uses: actions/download-artifact@v5.0.0
4242
with:
4343
name: Packages
4444
path: dist
4545

4646
- name: Set up Python
47-
uses: actions/setup-python@v4
47+
uses: actions/setup-python@v5
4848
with:
4949
python-version: ${{ matrix.python }}
5050

0 commit comments

Comments
 (0)