From 3323e823b21b3fc429e4b29774a9e507be69b70e Mon Sep 17 00:00:00 2001 From: Gabor Szabad Date: Wed, 25 May 2022 17:09:18 +0100 Subject: [PATCH] Check only direct dependencies --- .github/workflows/security.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 48a26ac690c..4c558310dad 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -12,5 +12,5 @@ jobs: - uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - - run: go mod download && go list -json -m all > go.list + - run: go mod download && go list -json -deps all > go.list - uses: sonatype-nexus-community/nancy-github-action@main