From eee4539bc4b943f3fbcb660d9b9cb0d169b9d83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20S=C3=BC=C3=9F?= Date: Thu, 2 May 2024 12:41:59 +0200 Subject: [PATCH] ci: checkout submodule (#5) --- .github/workflows/deploy.yaml | 2 ++ backend/main.go | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 49c005c..50679aa 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -26,6 +26,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + submodules: recursive - uses: actions/setup-go@v4 with: go-version-file: "backend/alloy/go.mod" diff --git a/backend/main.go b/backend/main.go index 6a95d15..ced92de 100644 --- a/backend/main.go +++ b/backend/main.go @@ -8,8 +8,8 @@ import ( "os" "time" - "github.com/grafana/alloy/converter" - "github.com/grafana/alloy/converter/diag" + "github.com/grafana/alloy/internal/converter" + "github.com/grafana/alloy/internal/converter/diag" "github.com/rs/cors" )