diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0cdeb3e..11a4920 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -58,7 +58,7 @@ jobs: run: | GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} go build -o tcp-multiplexer-${{ matrix.go-os }}-${{ matrix.go-arch }}${{ matrix.go-os == 'windows' && '.exe' || '' }} -v . - name: Upload Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: tcp-multiplexer-${{ matrix.go-os }}-${{ matrix.go-arch }} path: tcp-multiplexer-${{ matrix.go-os }}-${{ matrix.go-arch }}${{ matrix.go-os == 'windows' && '.exe' || '' }}