Skip to content

Commit

Permalink
fix: [#28] Unexpected value in action.yml. (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbp-bvanb committed Feb 13, 2024
1 parent f39d929 commit e588d8e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ Mission Critical Vulnerability Scanner (MCVS) Golang Action is a custom
following steps:

* Install the Golang version that is defined in the project `go.mod`.
* Verify download Golang modules.
* Verify to be downloaded Golang modules.
* Check for incorrect import order and indicate how to resolve it.
* Code security scanning and suppress certain CVEs for a maximum of one month.
In some situations a particular CVE will be resolved in a couple of weeks and
this allows the developer to continue in a save way while knowing that the
pipeline will fail again if the issue has not been resolved in a couple of
weeks.
* Code security scanning and suppression of certain CVEs for a maximum one
month. In some situations a particular CVE will be resolved in a couple of
weeks and this allows the developer to continue in a safe way while knowing
that the pipeline will fail again if the issue has not been resolved in a
couple of weeks.
* Linting.
* Unit tests.
* Integration tests.
* Code coverage.

In summary, using this action will ensure that Golang code meets certain
standards before it will be deployed to production as the assembly line will
fail if an issues arrises.
fail if an issue arrises.

## usage

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
#
# Verify downloaded dependencies.
#
- uses:
- name: verify golang modules
shell: bash
run: |
go mod verify
Expand Down

0 comments on commit e588d8e

Please sign in to comment.