From ed5795e69d3e31e307913c20e4559f71d9c479a5 Mon Sep 17 00:00:00 2001 From: Arik Alon Date: Tue, 24 Sep 2024 18:38:52 +0300 Subject: [PATCH] update github release action to download-artifact/upload-artifact v4 --- .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 b3493929..2781c403 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