bump: adds new semgrep rules (#177) #1050
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
| on: push | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Needed for git history | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| - name: Build CLI for all platforms | |
| run: make build-all | |
| - name: Upload CLI binaries | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: cli-binaries | |
| path: | | |
| cli-v2-linux | |
| cli-v2.exe | |
| cli-v2-macos | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| - name: Install dependencies from .codacy/codacy.yaml | |
| run: | | |
| make build | |
| ./cli-v2 install | |
| - name: "Run tests" | |
| run: | | |
| go test -coverprofile=unit.coverage.out ./... | |
| - name: "Upload coverage to Codacy" | |
| env: | |
| CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
| run: | | |
| bash <(curl -Ls https://coverage.codacy.com/get.sh) report --force-coverage-parser go -r unit.coverage.out | |
| # For now we are not releasing the CLI, as we are making some quicker iterations | |
| release: | |
| needs: [test] | |
| if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.event_name == 'push' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| - name: "Git Version" | |
| id: generate-version | |
| uses: codacy/[email protected] | |
| - name: "Tag version" | |
| run: | | |
| git tag ${{ steps.generate-version.outputs.version }} | |
| git push --tags "https://codacy:${{ secrets.GITHUB_TOKEN }}@github.com/codacy/codacy-cli-v2" | |
| - name: Get Go version | |
| id: go-version | |
| run: echo "VERSION=$(go version | cut -d' ' -f3)" >> $GITHUB_OUTPUT | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v5 | |
| with: | |
| distribution: goreleaser | |
| version: "~> v2" | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GOVERSION: ${{ steps.go-version.outputs.VERSION }} |