Skip to content

Commit c0c5412

Browse files
⬆ 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 8111ef9 commit c0c5412

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Build the binary wheel and a source tarball
7171
run: just build
7272
- name: Store the distribution packages
73-
uses: actions/upload-artifact@v5
73+
uses: actions/upload-artifact@v6
7474
with:
7575
name: python-package-distributions
7676
path: dist/

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4848
# format to the repository Actions tab.
4949
- name: "Upload artifact"
50-
uses: actions/upload-artifact@v5
50+
uses: actions/upload-artifact@v6
5151
with:
5252
name: SARIF file
5353
path: results.sarif

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
just test-all
7272
7373
- name: Store coverage files
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
with:
7676
name: ${{ env.COVERAGE_FILE }}
7777
path: ${{ env.COVERAGE_FILE }}
@@ -127,7 +127,7 @@ jobs:
127127
just test-all
128128
129129
- name: Store coverage files
130-
uses: actions/upload-artifact@v5
130+
uses: actions/upload-artifact@v6
131131
with:
132132
name: ${{ env.COVERAGE_FILE }}
133133
path: ${{ env.COVERAGE_FILE }}
@@ -181,7 +181,7 @@ jobs:
181181
just test-all
182182
183183
- name: Store coverage files
184-
uses: actions/upload-artifact@v5
184+
uses: actions/upload-artifact@v6
185185
with:
186186
name: ${{ env.COVERAGE_FILE }}
187187
path: ${{ env.COVERAGE_FILE }}

0 commit comments

Comments
 (0)