From d333698a5f66021a73c883924aecb46b566e9510 Mon Sep 17 00:00:00 2001 From: VersusFacit <67295367+VersusFacit@users.noreply.github.com> Date: Thu, 16 Jan 2025 10:55:23 -0800 Subject: [PATCH 1/2] Update the version to a non deprecated one. --- .github/workflows/integration.yml | 4 ++-- .github/workflows/main.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 99f78e33d..f7da8e458 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -186,7 +186,7 @@ jobs: GCS_BUCKET: dbt-ci run: tox -- --ddtrace - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: logs @@ -198,7 +198,7 @@ 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 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f537ed862..024a3278e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,7 +104,7 @@ 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 @@ -156,7 +156,7 @@ 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/ From 84b04b8c5570ab8ae2350eb6d55cca0e2a8e8a70 Mon Sep 17 00:00:00 2001 From: VersusFacit <67295367+VersusFacit@users.noreply.github.com> Date: Thu, 16 Jan 2025 11:41:49 -0800 Subject: [PATCH 2/2] Remove the uploads since we aren't using these --- .github/workflows/integration.yml | 12 ------------ .github/workflows/main.yml | 11 ----------- 2 files changed, 23 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f7da8e458..db70d140a 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -186,24 +186,12 @@ jobs: GCS_BUCKET: dbt-ci run: tox -- --ddtrace - - uses: actions/upload-artifact@v4 - if: always() - with: - name: logs - path: ./logs - - name: Get current date if: always() id: date run: | echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts - - 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 - require-label-comment: runs-on: ubuntu-latest diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 024a3278e..c32ea5134 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,12 +104,6 @@ jobs: run: | echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts - - uses: actions/upload-artifact@v4 - if: always() - with: - name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv - path: unit_results.csv - build: name: build packages @@ -156,11 +150,6 @@ jobs: if [[ "$(ls -lh dist/)" == *"a1"* ]]; then export is_alpha=1; fi echo "is_alpha=$is_alpha" >> $GITHUB_OUTPUT - - uses: actions/upload-artifact@v4 - with: - name: dist - path: dist/ - test-build: name: verify packages / python ${{ matrix.python-version }} / ${{ matrix.os }}