Skip to content

Commit 5a3dd0a

Browse files
chore(deps): Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 206c17e commit 5a3dd0a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
!failure() && !cancelled() &&
7777
steps.after-release.outputs.released
7878
# see https://github.com/actions/upload-artifact
79-
uses: actions/upload-artifact@v5
79+
uses: actions/upload-artifact@v6
8080
with:
8181
name: ${{ env.RUN_ARTIFACT_PYTHON_DIST }}
8282
path: ${{ env.DIST_SOURCE_DIR }}/
@@ -108,7 +108,7 @@ jobs:
108108
- name: Artifact reports
109109
if: ${{ ! cancelled() }}
110110
# see https://github.com/actions/upload-artifact
111-
uses: actions/upload-artifact@v5
111+
uses: actions/upload-artifact@v6
112112
with:
113113
name: ${{ env.REPORTS_ARTIFACT }}
114114
path: ${{ env.REPORTS_DIR }}

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ jobs:
269269
- name: Artifact reports
270270
if: ${{ ! cancelled() }}
271271
# see https://github.com/actions/upload-artifact
272-
uses: actions/upload-artifact@v5
272+
uses: actions/upload-artifact@v6
273273
with:
274274
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_bnt_${{ matrix.os }}_py${{ matrix.python-version }}'
275275
path: ${{ env.REPORTS_DIR }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
!failure() && !cancelled() &&
185185
steps.release.outputs.released == 'true'
186186
# see https://github.com/actions/upload-artifact
187-
uses: actions/upload-artifact@v5
187+
uses: actions/upload-artifact@v6
188188
with:
189189
name: ${{ env.DIST_ARTIFACT }}
190190
path: ${{ env.DIST_DIR }}/
@@ -262,7 +262,7 @@ jobs:
262262
- name: Artifact reports
263263
if: ${{ ! cancelled() }}
264264
# see https://github.com/actions/upload-artifact
265-
uses: actions/upload-artifact@v5
265+
uses: actions/upload-artifact@v6
266266
with:
267267
name: ${{ env.ARTIFACT_DOCKER_SBOM }}
268268
path: ${{ env.REPORTS_DIR }}/*.bom.*

0 commit comments

Comments
 (0)