add validate-cli-sec wf.yml #6066
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Static Analysis" | |
| on: | |
| push: | |
| branches: | |
| - "validate-cli-security-wf" | |
| - "master" | |
| tags-ignore: | |
| - "**" | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| branches: | |
| - "master" | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| Static-Check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - name: Setup Go with cache | |
| uses: jfrog/.github/actions/install-go-with-cache@main | |
| - name: Run golangci linter | |
| uses: jfrog/.github/actions/golangci-lint@main | |
| Go-Sec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| fetch-depth: 0 | |
| - name: Setup Go with cache | |
| uses: jfrog/.github/actions/install-go-with-cache@main | |
| - name: Run Go-Sec scanner | |
| uses: jfrog/.github/actions/gosec-scanner@main | |
| No-Replace: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - name: Check for uncommented replace instructions | |
| run: | | |
| if grep -E '^[[:space:]]*replace[[:space:]]' go.mod; then | |
| echo "❌ Found uncommented replace directives in go.mod" | |
| echo "All replace directives should be commented out" | |
| exit 1 | |
| else | |
| echo "✅ No uncommented replace directives found in go.mod" | |
| fi | |
| Validate-cli-security: | |
| name: Validate CLI-Security Compatibility | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout CLI Core Source | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - name: Checkout Security CLI Source - Dev branch | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: jfrog/jfrog-cli-security | |
| ref: dev | |
| path: cli-security | |
| - name: Replace To Local Core in Security CLI | |
| run: | | |
| cd cli-security | |
| go mod edit -replace github.com/jfrog/jfrog-cli-core/v2=${GITHUB_WORKSPACE} | |
| go mod tidy | |
| - name: Run go vet on CLI Security | |
| run: | | |
| cd cli-security | |
| go vet ./... |