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

Commit 16a7dcb

Browse files
dependabot[bot]FishtownBuildBotmikealfare
authored
Bump actions/upload-artifact from 3 to 4 (#1210)
* 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 was 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 80d8811 commit 16a7dcb

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
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-29T00:51:59.00000Z
4+
custom:
5+
Author: dependabot[bot]
6+
PR: 1210

.github/workflows/integration.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,23 +189,25 @@ jobs:
189189
GCS_BUCKET: dbt-ci
190190
run: tox -- --ddtrace
191191

192-
- uses: actions/upload-artifact@v3
192+
- uses: actions/upload-artifact@v4
193193
if: always()
194194
with:
195195
name: logs
196196
path: ./logs
197+
overwrite: true
197198

198199
- name: Get current date
199200
if: always()
200201
id: date
201202
run: |
202203
echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts
203204
204-
- uses: actions/upload-artifact@v3
205+
- uses: actions/upload-artifact@v4
205206
if: always()
206207
with:
207208
name: integration_results_${{ matrix.python-version }}_${{ matrix.os }}_${{ matrix.adapter }}-${{ steps.date.outputs.date }}.csv
208209
path: integration_results.csv
210+
overwrite: true
209211

210212
# python integration tests are slow so we only run them seperately and for a single OS / python version
211213
test-python:

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,12 @@ jobs:
104104
run: |
105105
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
@@ -156,10 +157,11 @@ jobs:
156157
if [[ "$(ls -lh dist/)" == *"a1"* ]]; then export is_alpha=1; fi
157158
echo "is_alpha=$is_alpha" >> $GITHUB_OUTPUT
158159
159-
- uses: actions/upload-artifact@v3
160+
- uses: actions/upload-artifact@v4
160161
with:
161162
name: dist
162163
path: dist/
164+
overwrite: true
163165

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

0 commit comments

Comments
 (0)