Skip to content

Commit 0e2327b

Browse files
Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) 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/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major 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 175f892 commit 0e2327b

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0
3131

@@ -38,7 +38,7 @@ jobs:
3838
- name: build
3939
run: uv sync && uv build --sdist
4040

41-
- uses: actions/upload-artifact@v5
41+
- uses: actions/upload-artifact@v7
4242
with:
4343
name: Packages
4444
path: dist
@@ -52,7 +52,7 @@ jobs:
5252
contents: write
5353

5454
steps:
55-
- uses: actions/download-artifact@v6
55+
- uses: actions/download-artifact@v8
5656
with:
5757
name: Packages
5858
path: dist
@@ -75,7 +75,7 @@ jobs:
7575
if: startsWith(github.ref, 'refs/tags/v')
7676

7777
steps:
78-
- uses: actions/download-artifact@v6
78+
- uses: actions/download-artifact@v8
7979
with:
8080
name: Packages
8181
path: dist

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Format
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727

@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ubuntu-latest
5454

5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v6
5757
with:
5858
fetch-depth: 0
5959

0 commit comments

Comments
 (0)