This repository was archived by the owner on Sep 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments