From 812ee497c84b771f267bb42cd8959ca4d44649ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Nov 2025 09:37:25 +0000 Subject: [PATCH] chore(deps): 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/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0616c4b..2ee2400 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -107,7 +107,7 @@ jobs: docker save postgres:${{ matrix.pg_version }} > postgres-${{ matrix.pg_version }}.tar - name: Upload image artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: postgres-${{ matrix.pg_version }} path: postgres-${{ matrix.pg_version }}.tar @@ -187,7 +187,7 @@ jobs: go build -ldflags "-s -w -X main.version=${VERSION_NO_V}" -o ${{ matrix.binary }} ./cmd - name: Upload binary (${{ matrix.binary }}) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ matrix.binary }} path: ${{ matrix.binary }}