From d43bdc9d029cf062bed6478bd9c5beca97555e61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:05:27 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go-test-darwin.yaml | 4 ++-- .github/workflows/go-test-linux.yaml | 4 ++-- .github/workflows/go-test-windows.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/go-test-darwin.yaml b/.github/workflows/go-test-darwin.yaml index 96a354e..45b8405 100644 --- a/.github/workflows/go-test-darwin.yaml +++ b/.github/workflows/go-test-darwin.yaml @@ -70,13 +70,13 @@ jobs: go test -exec "${GITHUB_WORKSPACE}/bin/macos_exec_dyld.sh" -json -v -p 1 -coverprofile="./cover-${{ matrix.senzingsdk-version }}.out" -covermode=atomic -coverpkg=./... ./... 2>&1 | tee "/tmp/gotest-${{ matrix.senzingsdk-version }}.log" | gotestfmt - name: Store coverage file - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: "cover-${{ matrix.senzingsdk-version }}.out" path: "./cover-${{ matrix.senzingsdk-version }}.out" - name: Upload test log - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: "test-log-${{ matrix.senzingsdk-version }}" diff --git a/.github/workflows/go-test-linux.yaml b/.github/workflows/go-test-linux.yaml index a01108e..ef8e284 100644 --- a/.github/workflows/go-test-linux.yaml +++ b/.github/workflows/go-test-linux.yaml @@ -78,13 +78,13 @@ jobs: go test -json -v -p 1 -coverprofile="./cover-${{ matrix.senzingsdk-version }}.out" -covermode=atomic -coverpkg=./... ./... 2>&1 | tee "/tmp/gotest-${{ matrix.senzingsdk-version }}.log" | gotestfmt - name: Store coverage file - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: "cover-${{ matrix.senzingsdk-version }}.out" path: "./cover-${{ matrix.senzingsdk-version }}.out" - name: Upload test log - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: "test-log-${{ matrix.senzingsdk-version }}" diff --git a/.github/workflows/go-test-windows.yaml b/.github/workflows/go-test-windows.yaml index 01c12ee..1cdd0e0 100644 --- a/.github/workflows/go-test-windows.yaml +++ b/.github/workflows/go-test-windows.yaml @@ -66,13 +66,13 @@ jobs: cp cover "cover-${{ matrix.senzingsdk-version }}.out" - name: Store coverage file - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: "cover-${{ matrix.senzingsdk-version }}.out" path: "cover-${{ matrix.senzingsdk-version }}.out" - name: Upload test log - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: "test-log-${{ matrix.senzingsdk-version }}"