From 3c535b81e4b8ae0e0c6ad3815c01d272f712509d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Apr 2024 15:58:53 +0000 Subject: [PATCH 1/3] 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](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 698982c0f..f7eca41d4 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -190,7 +190,7 @@ jobs: DBT_TEST_USER_3: dbt_test_role_3 run: tox -- --ddtrace - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: logs @@ -201,7 +201,7 @@ jobs: id: date 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 9d3cf5536..02b4dd2f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,7 +104,7 @@ jobs: id: date 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 e4f19165b6bf0cc673b097ae2037f57e82764b5e Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 12 Apr 2024 15:59:22 +0000 Subject: [PATCH 2/3] Add automated changelog yaml from template for bot PR --- .changes/unreleased/Dependencies-20240412-155921.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changes/unreleased/Dependencies-20240412-155921.yaml diff --git a/.changes/unreleased/Dependencies-20240412-155921.yaml b/.changes/unreleased/Dependencies-20240412-155921.yaml new file mode 100644 index 000000000..f83e5b404 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240412-155921.yaml @@ -0,0 +1,6 @@ +kind: "Dependencies" +body: "Bump actions/upload-artifact from 3 to 4" +time: 2024-04-12T15:59:21.00000Z +custom: + Author: dependabot[bot] + PR: 971 From d9170f954a46ff440a142897a6fc0cc38a87d635 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Wed, 17 Jul 2024 20:40:19 -0400 Subject: [PATCH 3/3] add overwrite parameter which was implicitly true in v3 but false in v4 --- .github/workflows/integration.yml | 2 ++ .github/workflows/main.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index e1783c3b9..f6d3addd2 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -200,6 +200,7 @@ jobs: with: name: logs path: ./logs + overwrite: true - name: Get current date if: always() @@ -211,6 +212,7 @@ jobs: with: name: integration_results_${{ matrix.python-version }}_${{ matrix.os }}_${{ matrix.adapter }}-${{ steps.date.outputs.date }}.csv path: integration_results.csv + overwrite: true require-label-comment: runs-on: ubuntu-latest diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 23b60f362..41e8c6ea7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,6 +108,7 @@ jobs: with: name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv path: unit_results.csv + overwrite: true build: name: build packages @@ -159,6 +160,7 @@ jobs: with: name: dist path: dist/ + overwrite: true test-build: name: verify packages / python ${{ matrix.python-version }} / ${{ matrix.os }}