From 690d5c0f5f6f05fb39d639a765128af0cb957f7e Mon Sep 17 00:00:00 2001 From: Sasha Zezulinsky Date: Wed, 23 Oct 2024 21:03:48 +0200 Subject: [PATCH] build a new release --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4f8d13c06..cc63bfc47 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: make test - name: Upload Gocore if: startsWith(github.ref, 'refs/tags/v') - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: gocore-windows-x86_64 path: ./build/bin/gocore* @@ -55,7 +55,7 @@ jobs: make test - name: Upload Gocore if: startsWith(github.ref, 'refs/tags/v') - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: gocore-${{ matrix.config.path }} path: ./build/bin/gocore* @@ -88,7 +88,7 @@ jobs: make test - name: Upload Gocore if: startsWith(github.ref, 'refs/tags/v') - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: gocore-linux-${{ matrix.config.arch }} path: ./build/bin/gocore* @@ -101,7 +101,7 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Version id: version run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10}) @@ -133,7 +133,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Artifact Gocore - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: gocore-${{ matrix.platform.path}} path: ./gocore-${{ matrix.platform.path }}