We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a38c9e commit 0d314a7Copy full SHA for 0d314a7
.github/workflows/analysis.yml
@@ -59,3 +59,29 @@ jobs:
59
else
60
echo "✅ No uncommented replace directives found in go.mod"
61
fi
62
+
63
+ No-Security-Break:
64
+ runs-on: ubuntu-latest
65
+ steps:
66
+ - name: Checkout Core Source
67
+ uses: actions/checkout@v5
68
+ with:
69
+ ref: ${{ github.event.pull_request.head.sha || github.ref }}
70
71
+ - name: Checkout Security CLI Source - Dev branch
72
73
74
+ repository: jfrog/jfrog-security-cli
75
+ ref: dev
76
+ path: security-cli
77
78
+ - name: Replace To Local Core in Security CLI
79
+ run: |
80
+ cd security-cli
81
+ go mod edit -replace github.com/jfrog/jfrog-cli-core=../
82
+ go mod tidy
83
84
+ - name: Vet Security CLI
85
86
87
+ go vet ./...
0 commit comments