File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -229,9 +229,15 @@ jobs:
229
229
module : [api, common, .]
230
230
fail-fast : false
231
231
steps :
232
- - id : govulncheck
233
- uses : golang/govulncheck-action@v1
232
+ - name : Checkout
233
+ uses : actions/checkout@v4
234
234
with :
235
- work-dir : ${{ matrix.module }}
236
- go-version-file : go.mod
237
- check-latest : true
235
+ fetch-depth : 0
236
+
237
+ - name : Install devbox
238
+ uses :
jetify-com/[email protected]
239
+ with :
240
+ enable-cache : true
241
+
242
+ - id : govulncheck
243
+ run : devbox run -- make govulncheck.${{ matrix.module }}
Original file line number Diff line number Diff line change @@ -212,4 +212,4 @@ endif
212
212
.PHONY : ggovulncheck.%
213
213
govulncheck.% : # # Runs golangci-lint for a specific module
214
214
govulncheck.% : ; $(info $(M ) running govulncheck on $* module)
215
- $(if $(filter-out root,$* ) ,cd $* && ) govulncheck ./...
215
+ $(if $(filter-out root . ,$* ) ,cd $* && ) govulncheck ./...
You can’t perform that action at this time.
0 commit comments