Skip to content

Commit 4529935

Browse files
Bump the github-actions group with 3 updates (#66)
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/download-artifact](https://github.com/actions/download-artifact). 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) --- 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 ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3dade9d commit 4529935

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131

3232
name: ${{ matrix.os }} - ${{ matrix.python-version }}
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: Get history and tags for SCM versioning to work
3636
run: |
3737
git fetch --prune --unshallow
3838
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
3939
- name: Set up Python ${{ matrix.python-version }}
40-
uses: actions/setup-python@v5
40+
uses: actions/setup-python@v6
4141
with:
4242
python-version: ${{ matrix.python-version }}
4343
allow-prereleases: true
@@ -52,12 +52,12 @@ jobs:
5252
needs: [test]
5353
name: Build Python packages
5454
steps:
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
- name: Get history and tags for SCM versioning to work
5757
run: |
5858
git fetch --prune --unshallow
5959
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
60-
- uses: actions/setup-python@v5
60+
- uses: actions/setup-python@v6
6161
with:
6262
python-version: "3.12"
6363
- name: Install dependencies
@@ -76,12 +76,12 @@ jobs:
7676
needs: [dist]
7777
name: Twine check
7878
steps:
79-
- uses: actions/setup-python@v5
79+
- uses: actions/setup-python@v6
8080
with:
8181
python-version: "3.12"
8282
- name: Install dependencies
8383
run: pip install twine
84-
- uses: actions/download-artifact@v4
84+
- uses: actions/download-artifact@v5
8585
with:
8686
name: dist
8787
path: dist
@@ -93,7 +93,7 @@ jobs:
9393
needs: [dist_check]
9494
name: PyPI upload
9595
steps:
96-
- uses: actions/download-artifact@v4
96+
- uses: actions/download-artifact@v5
9797
with:
9898
name: dist
9999
path: dist

0 commit comments

Comments
 (0)