From db8ec0b509fe744ceceb5f556794c599aa2c121f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 02:02:52 +0000 Subject: [PATCH] build(action): 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-release-cross.yml | 2 +- .github/workflows/go-release-platform.yml | 2 +- .github/workflows/goreleaser-golang.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-release-cross.yml b/.github/workflows/go-release-cross.yml index 10e7fac..60010e9 100644 --- a/.github/workflows/go-release-cross.yml +++ b/.github/workflows/go-release-cross.yml @@ -33,7 +33,7 @@ jobs: # make distPlatformTarAll - name: upload-artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ inputs.upload_artifact_name != null }} with: name: ${{ inputs.upload_artifact_name }} diff --git a/.github/workflows/go-release-platform.yml b/.github/workflows/go-release-platform.yml index 2c898a0..fa40cfe 100644 --- a/.github/workflows/go-release-platform.yml +++ b/.github/workflows/go-release-platform.yml @@ -121,7 +121,7 @@ jobs: echo " archive sha256sum at: ${{ env.ASSET }}.sha256" - name: upload-artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ inputs.upload_artifact_name != null }} with: name: ${{ inputs.upload_artifact_name }}-${{ inputs.version_name }}-${{ matrix.go_os }}-${{ matrix.go_arch }} diff --git a/.github/workflows/goreleaser-golang.yml b/.github/workflows/goreleaser-golang.yml index f81700b..8f02074 100644 --- a/.github/workflows/goreleaser-golang.yml +++ b/.github/workflows/goreleaser-golang.yml @@ -172,7 +172,7 @@ jobs: # GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} - name: upload-artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ inputs.upload_artifact_name != null || ! inputs.dry_run }} with: name: ${{ inputs.upload_artifact_name }}-${{ inputs.version_name }}-${{ github.run_id }}-${{ github.run_attempt }}