From 9a26719ac3b8cdfecb029da0cd4998ae718ddc66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 15:02:54 +0000 Subject: [PATCH] chore(deps): 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/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 35cb1002..3943efbb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -45,7 +45,7 @@ jobs: - name: build for ${{ matrix.os }} ${{ matrix.arch }} run: make build GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} - name: upload ${{ matrix.os }} ${{ matrix.arch }} artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: bin path: build/ktf.${{ matrix.os }}.${{ matrix.arch }} @@ -59,7 +59,7 @@ jobs: run: sha256sum ktf.${{ matrix.os }}.${{ matrix.arch }} >> CHECKSUMS.${{ matrix.os }}.${{ matrix.arch }} working-directory: ./build/ - name: upload checksum for ${{ matrix.os }} ${{ matrix.arch }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: CHECKSUMS path: build/CHECKSUMS.${{ matrix.os }}.${{ matrix.arch }}