diff --git a/.changes/unreleased/Dependencies-20240429-005159.yaml b/.changes/unreleased/Dependencies-20240429-005159.yaml new file mode 100644 index 000000000..adf2cae65 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240429-005159.yaml @@ -0,0 +1,6 @@ +kind: "Dependencies" +body: "Bump actions/upload-artifact from 3 to 4" +time: 2024-04-29T00:51:59.00000Z +custom: + Author: dependabot[bot] + PR: 1210 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 03c1e06ed..a9ead6cb1 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -189,11 +189,12 @@ jobs: GCS_BUCKET: dbt-ci run: tox -- --ddtrace - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: logs path: ./logs + overwrite: true - name: Get current date if: always() @@ -201,11 +202,12 @@ jobs: run: | echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: integration_results_${{ matrix.python-version }}_${{ matrix.os }}_${{ matrix.adapter }}-${{ steps.date.outputs.date }}.csv path: integration_results.csv + overwrite: true # python integration tests are slow so we only run them seperately and for a single OS / python version test-python: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4cd05f9ca..631bc7652 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,11 +104,12 @@ jobs: run: | echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv path: unit_results.csv + overwrite: true build: name: build packages @@ -156,10 +157,11 @@ jobs: if [[ "$(ls -lh dist/)" == *"a1"* ]]; then export is_alpha=1; fi echo "is_alpha=$is_alpha" >> $GITHUB_OUTPUT - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: dist path: dist/ + overwrite: true test-build: name: verify packages / python ${{ matrix.python-version }} / ${{ matrix.os }}