From 358c68b9fd2e6ab13716378fa8eb747ccb441bfb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 02:47:47 +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/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 68911710f..bbaadff7a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -107,7 +107,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 31a36c0f20d1c5385f81b2b38af8585f5aea445c Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 19 Apr 2024 02:48:19 +0000 Subject: [PATCH 2/3] Add automated changelog yaml from template for bot PR --- .changes/unreleased/Dependencies-20240419-024818.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changes/unreleased/Dependencies-20240419-024818.yaml diff --git a/.changes/unreleased/Dependencies-20240419-024818.yaml b/.changes/unreleased/Dependencies-20240419-024818.yaml new file mode 100644 index 000000000..ed51e119a --- /dev/null +++ b/.changes/unreleased/Dependencies-20240419-024818.yaml @@ -0,0 +1,6 @@ +kind: "Dependencies" +body: "Bump actions/upload-artifact from 3 to 4" +time: 2024-04-19T02:48:18.00000Z +custom: + Author: dependabot[bot] + PR: 1011 From 4374ee76e03175474ff8547918c54000ebc0967f Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Wed, 17 Jul 2024 23:51:07 -0400 Subject: [PATCH 3/3] add overwrite parameter which is implicitly true in v3 but false in v4 --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 93fb89fe8..b5a697cfd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -112,6 +112,7 @@ jobs: with: name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv path: unit_results.csv + overwrite: true build: name: build packages @@ -160,6 +161,7 @@ jobs: with: name: dist path: dist/ + overwrite: true test-build: name: verify packages / python ${{ matrix.python-version }} / ${{ matrix.os }}