From 3c56047db9b5cf63b5af2a58fe218d5aaea17f45 Mon Sep 17 00:00:00 2001 From: Yannick Huber Date: Mon, 3 Feb 2025 08:38:53 +0100 Subject: [PATCH] Fixed deprecated build artifacts --- .github/workflows/master.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 7f889a4..3595a2d 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -36,7 +36,7 @@ jobs: run: go build -o flowpipeline -ldflags "-X main.Version=${{ github.sha }}" . - name: save binary - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4.6.0 with: name: flowpipeline-${{ matrix.goos }} path: ./flowpipeline @@ -47,7 +47,7 @@ jobs: CGO_ENABLED: 0 - name: save statically linked binary - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4.6.0 with: name: flowpipeline-${{ matrix.goos }}-static path: ./flowpipeline-static