fix: Update README

This commit is contained in:
abhisek 2024-10-11 20:51:34 +05:30
parent 59967ca8cf
commit 4f1cb39e56
No known key found for this signature in database
GPG Key ID: CB92A4990C02A88F
2 changed files with 11 additions and 8 deletions

View File

@ -1,9 +1,6 @@
<h1 align="center">
<img alt="SafeDep Vet" src="docs/static/img/vet-logo.png" width="150" />
</h1>
<p align="center">
🙌 Refer to <b><a href="https://safedep.io/docs/">https://safedep.io/docs</a></b> for the documentation 📖
</p>
[![Go Report Card](https://goreportcard.com/badge/github.com/safedep/vet)](https://goreportcard.com/report/github.com/safedep/vet)
![License](https://img.shields.io/github/license/safedep/vet)
@ -16,13 +13,13 @@
[![vet banner](docs/static/img/vet/vet-banner.png)](https://safedep.io/docs)
## Automate Open Source Package Vetting in CI/CD
## Policy as Code for Open Source Software Supply Chain
`vet` is a tool for identifying risks in open source software supply chain. It
goes beyond just vulnerabilities and provides visibility on OSS package risks
due to it's license, popularity, security hygiene, and more. `vet` is designed
with the goal of enabling trusted OSS package consumption by integrating with
CI/CD and `policy as code` as guardrails.
with the goal of helping software development teams consume safe and trusted
OSS components through automated vetting in CI/CD.
* [🔥 vet in action](#-vet-in-action)
* [Getting Started](#getting-started)
@ -43,6 +40,7 @@ CI/CD and `policy as code` as guardrails.
* [📖 Documentation](#-documentation)
* [🎊 Community](#-community)
* [💻 Development](#-development)
* [Support](#support)
* [Star History](#star-history)
* [🔖 References](#-references)
@ -281,6 +279,12 @@ First of all, thank you so much for showing interest in `vet`, we appreciate it
Refer to [CONTRIBUTING.md](CONTRIBUTING.md)
## Support
[SafeDep](https://safedep.io) provides enterprise support for `vet`
deployments. Check out [SafeDep Cloud](https://safedep.io) for large scale
deployment and management of `vet` in your organization.
## Star History
[![Star History Chart](https://api.star-history.com/svg?repos=safedep/vet&type=Date)](https://star-history.com/#safedep/vet&Date)

View File

@ -2,7 +2,6 @@ package cloud
import (
"errors"
"fmt"
"os"
"sort"
@ -84,7 +83,7 @@ func renderQueryResponseAsTable(response *query.QueryResponse) error {
return nil
}
ui.PrintSuccess(fmt.Sprintf("Query returned %d results", response.Count()))
ui.PrintSuccess("Query returned %d results", response.Count())
// Header
headers := []string{}