Skip to content

Commit eb517c5

Browse files
Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/setup-python](https://github.com/actions/setup-python), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/setup-python` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.0.0...v6.1.0) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ca07cc8 commit eb517c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/releases.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
submodules: true
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-python@v6.0.0
19+
- uses: actions/setup-python@v6.1.0
2020
name: Install Python
2121
with:
2222
python-version: '3.11'
@@ -36,7 +36,7 @@ jobs:
3636
else
3737
echo "All seem good"
3838
fi
39-
- uses: actions/upload-artifact@v5
39+
- uses: actions/upload-artifact@v6
4040
with:
4141
name: releases
4242
path: dist
@@ -45,7 +45,7 @@ jobs:
4545
needs: [build_artifacts]
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/download-artifact@v6
48+
- uses: actions/download-artifact@v7
4949
with:
5050
name: releases
5151
path: dist
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
6262
steps:
63-
- uses: actions/download-artifact@v6
63+
- uses: actions/download-artifact@v7
6464
with:
6565
name: releases
6666
path: dist

0 commit comments

Comments
 (0)