diff --git a/.github/workflows/benchmark_cmd_app.yml b/.github/workflows/benchmark_cmd_app.yml index f3d0471..e7f8e79 100644 --- a/.github/workflows/benchmark_cmd_app.yml +++ b/.github/workflows/benchmark_cmd_app.yml @@ -26,7 +26,7 @@ jobs: go test -bench=. -benchmem -benchtime=10s -count=5 ./cmd/app | tee benchmark_result.txt - name: Upload benchmark results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: benchmark-results-cmd-app path: benchmark_result.txt diff --git a/.github/workflows/build_cmd_app.yml b/.github/workflows/build_cmd_app.yml index 2c6ae96..b3533d6 100644 --- a/.github/workflows/build_cmd_app.yml +++ b/.github/workflows/build_cmd_app.yml @@ -38,7 +38,7 @@ jobs: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build "-ldflags=-s" -o=./bin/linux_amd64/${{ env.SERVICE_NAME }} ./cmd/app - name: Upload binary artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: goalkeepr-binary path: ./bin/linux_amd64/goalkeepr