File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2626 # see https://github.com/actions/checkout/issues/701 for extra info about this option
2727 with : { fetch-depth: 0 }
2828
29+ - uses : ./.github/actions/repo_access
30+ with :
31+ DEPLOY_KEY_READ_VENAFI_CONNECTION_LIB : ${{ secrets.DEPLOY_KEY_READ_VENAFI_CONNECTION_LIB }}
32+
2933 - id : go-version
3034 run : |
3135 make print-go-version >> "$GITHUB_OUTPUT"
Original file line number Diff line number Diff line change @@ -98,12 +98,14 @@ shared_generate_targets += generate-govulncheck
9898verify-govulncheck : | $(NEEDS_GOVULNCHECK )
9999 @find . -name go.mod -not \( -path " ./$( bin_dir) /*" -or -path " ./make/_shared/*" \) \
100100 | while read d; do \
101+ set -x ; \
101102 target=$$(dirname $${d} ) ; \
102- echo " Running 'GOTOOLCHAIN=go$( VENDORED_GO_VERSION) $( bin_dir) /tools/govulncheck ./...' in directory '$$ {target}'" ; \
103+ echo " Running 'GOPRIVATE= $( govulncheck_goprivate ) GOTOOLCHAIN=go$( VENDORED_GO_VERSION) $( bin_dir) /tools/govulncheck ./...' in directory '$$ {target}'" ; \
103104 pushd " $$ {target}" > /dev/null; \
104105 GOPRIVATE=$(govulncheck_goprivate ) GOTOOLCHAIN=go$(VENDORED_GO_VERSION ) $(GOVULNCHECK ) ./... || exit ; \
105106 popd > /dev/null; \
106107 echo " " ; \
108+ set +x ; \
107109 done
108110
109111ifdef golangci_lint_config
You can’t perform that action at this time.
0 commit comments