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 }}