Skip to content

Commit cdb11a3

Browse files
Chore(deps): Bump the actions-infrastructure group across 1 directory with 3 updates
Bumps the actions-infrastructure 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-infrastructure - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e1b8f72 commit cdb11a3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ${{ 'ubuntu-latest' }}
2828

2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333
- name: Log in to the Container registry

.github/workflows/hatch.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
build:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v5
36+
- uses: actions/checkout@v6
3737
with:
3838
fetch-depth: 0
3939
- run: pipx run build
4040
- run: pipx run twine check dist/*
41-
- uses: actions/upload-artifact@v5
41+
- uses: actions/upload-artifact@v6
4242
with:
4343
name: dist
4444
path: dist/
@@ -54,9 +54,9 @@ jobs:
5454
- os: ubuntu-latest
5555
source: sdist
5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858
if: matrix.source == 'repo'
59-
- uses: actions/download-artifact@v6
59+
- uses: actions/download-artifact@v7
6060
with:
6161
name: dist
6262
path: dist/
@@ -83,7 +83,7 @@ jobs:
8383
id-token: write
8484
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
8585
steps:
86-
- uses: actions/download-artifact@v6
86+
- uses: actions/download-artifact@v7
8787
with:
8888
name: dist
8989
path: dist/

0 commit comments

Comments
 (0)