From 6dfe7e8cfd15515d3ee93d32cbfeac77147958fc Mon Sep 17 00:00:00 2001 From: arik Date: Tue, 24 Sep 2024 18:49:02 +0300 Subject: [PATCH] update github release action to download-artifact/upload-artifact v4 (#343) --- .github/workflows/build-on-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-on-release.yml b/.github/workflows/build-on-release.yml index b349392..2781c40 100644 --- a/.github/workflows/build-on-release.yml +++ b/.github/workflows/build-on-release.yml @@ -124,7 +124,7 @@ jobs: asset_content_type: application/octet-stream - name: Upload build as artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: krr-${{ matrix.os }}-${{ github.ref_name }} path: ./krr-${{ matrix.os }}-${{ github.ref_name }}.zip @@ -159,7 +159,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v2 - name: Download MacOS artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: krr-macos-latest-${{ github.ref_name }} - name: Calculate hash @@ -177,7 +177,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v2 - name: Download Linux artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: krr-ubuntu-latest-${{ github.ref_name }} - name: Calculate hash