Skip to content

Commit 52aa66b

Browse files
⬆ Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0b3c488 commit 52aa66b

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@v4
73+
uses: actions/upload-artifact@v5
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@v4
50+
uses: actions/upload-artifact@v5
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
@@ -70,7 +70,7 @@ jobs:
7070
just test-all
7171
7272
- name: Store coverage files
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v5
7474
with:
7575
name: ${{ env.COVERAGE_FILE }}
7676
path: ${{ env.COVERAGE_FILE }}
@@ -125,7 +125,7 @@ jobs:
125125
just test-all
126126
127127
- name: Store coverage files
128-
uses: actions/upload-artifact@v4
128+
uses: actions/upload-artifact@v5
129129
with:
130130
name: ${{ env.COVERAGE_FILE }}
131131
path: ${{ env.COVERAGE_FILE }}
@@ -178,7 +178,7 @@ jobs:
178178
just test-all
179179
180180
- name: Store coverage files
181-
uses: actions/upload-artifact@v4
181+
uses: actions/upload-artifact@v5
182182
with:
183183
name: ${{ env.COVERAGE_FILE }}
184184
path: ${{ env.COVERAGE_FILE }}

0 commit comments

Comments
 (0)