From 0740fdf34d6a1ca518c53c3578e2153b17a3edb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Aug 2025 13:23:44 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4.6.1 to 4.6.2 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.1 to 4.6.2. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1...ea165f8d65b6e75b540449e92b4886f43607fa02) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... 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 e46c4aa7..039f8e40 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -49,7 +49,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@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: bin-${{ matrix.os }}-${{ matrix.arch }} path: build/ktf.${{ matrix.os }}.${{ matrix.arch }} @@ -63,7 +63,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@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: CHECKSUMS-${{ matrix.os }}-${{ matrix.arch }} path: build/CHECKSUMS.${{ matrix.os }}.${{ matrix.arch }}