Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 0053c00

Browse files
dependabot[bot]FishtownBuildBotmikealfare
authored
Bump actions/upload-artifact from 3 to 4 (#1011)
* Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Add automated changelog yaml from template for bot PR * add overwrite parameter which is implicitly true in v3 but false in v4 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Github Build Bot <[email protected]> Co-authored-by: Mike Alfare <[email protected]> Co-authored-by: Mike Alfare <[email protected]>
1 parent d0474c3 commit 0053c00

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: "Dependencies"
2+
body: "Bump actions/upload-artifact from 3 to 4"
3+
time: 2024-04-19T02:48:18.00000Z
4+
custom:
5+
Author: dependabot[bot]
6+
PR: 1011

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,12 @@ jobs:
104104
id: date
105105
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts
106106

107-
- uses: actions/upload-artifact@v3
107+
- uses: actions/upload-artifact@v4
108108
if: always()
109109
with:
110110
name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
111111
path: unit_results.csv
112+
overwrite: true
112113

113114
build:
114115
name: build packages
@@ -153,10 +154,11 @@ jobs:
153154
if [[ "$(ls -lh dist/)" == *"a1"* ]]; then export is_alpha=1; fi
154155
echo "is_alpha=$is_alpha" >> $GITHUB_OUTPUT
155156
156-
- uses: actions/upload-artifact@v3
157+
- uses: actions/upload-artifact@v4
157158
with:
158159
name: dist
159160
path: dist/
161+
overwrite: true
160162

161163
test-build:
162164
name: verify packages / python ${{ matrix.python-version }} / ${{ matrix.os }}

0 commit comments

Comments
 (0)