From d0365991cf3b6972ea193859909c5fad608f536e Mon Sep 17 00:00:00 2001 From: Brandon Pollack Date: Tue, 18 Feb 2025 23:30:59 +0900 Subject: [PATCH] recurse submodules on lint. This is needed so go.mod can point to the /pulumi dir --- .github/workflows/stage-lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stage-lint.yml b/.github/workflows/stage-lint.yml index 3b971967..1b5e6138 100644 --- a/.github/workflows/stage-lint.yml +++ b/.github/workflows/stage-lint.yml @@ -15,7 +15,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 + with: + submodules: 'recursive' - name: Set up Go uses: actions/setup-go@v5 with: