diff --git a/.github/workflows/benchmark_cmd_app.yml b/.github/workflows/benchmark_cmd_app.yml index 129a014..51f8ded 100644 --- a/.github/workflows/benchmark_cmd_app.yml +++ b/.github/workflows/benchmark_cmd_app.yml @@ -29,7 +29,7 @@ jobs: go test -bench=. -benchmem -benchtime=10s -count=5 ./cmd/app | tee benchmark_result.txt - name: Upload benchmark results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 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 9f93705..d7e5768 100644 --- a/.github/workflows/build_cmd_app.yml +++ b/.github/workflows/build_cmd_app.yml @@ -36,7 +36,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@v4 + uses: actions/upload-artifact@v5 with: name: goalkeepr-binary path: ./bin/linux_amd64/goalkeepr