From e53db2eec8c7ad0a2d5c077ebf8ec2094e70a3fb Mon Sep 17 00:00:00 2001 From: Tyler Lentz Date: Fri, 26 Jan 2024 15:24:54 -0800 Subject: [PATCH] try making lint action look more like test action --- .github/workflows/linter.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 890bfd36..17c2d274 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -13,10 +13,17 @@ jobs: name: Lint Backend runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v3 + - name: Install Go + uses: actions/setup-go@v2 with: go-version: 1.19 - - uses: actions/checkout@v3 + + - name: Checkout Repo + uses: actions/checkout@v2 + with: + submodules: true + token: ${{ secrets.SSH_TOKEN }} + - name: Install dependencies run: make install-dependencies