diff --git a/README.md b/README.md index ae5b6a9..1ebe3c5 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,13 @@ 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. @@ -19,7 +19,7 @@ following steps: 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 diff --git a/action.yml b/action.yml index 6e12060..74dcfc5 100644 --- a/action.yml +++ b/action.yml @@ -29,7 +29,7 @@ runs: # # Verify downloaded dependencies. # - - uses: + - name: verify golang modules shell: bash run: | go mod verify