From fad48cd6ce9b620ccd5765554604c395a48d02b5 Mon Sep 17 00:00:00 2001 From: Andrew Mayorov Date: Tue, 21 Jan 2025 15:33:53 +0100 Subject: [PATCH] ci: avoid using deprecated actions versions --- .github/workflows/release.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a984d6b..bdd453c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -56,7 +56,7 @@ jobs: run: | env BUILD_RELEASE=1 CI_RELEASE_VERSION=${{ github.event.inputs.release_as }} ./build.sh - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: packages path: | @@ -113,7 +113,7 @@ jobs: run: | docker run -i --rm --user 1001 -v $(pwd):/wd --workdir /wd --platform=linux/${{ matrix.arch }} -e BUILD_RELEASE=1 -e CI_RELEASE_VERSION=${{ github.event.inputs.release_as }} $IMAGE bash -euc './build.sh' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: packages path: | @@ -131,6 +131,7 @@ jobs: with: name: packages path: packages + merge-multiple: true - name: Create Release uses: softprops/action-gh-release@v2 with: