Skip to content

Commit

Permalink
Fix govulncheck (#7)
Browse files Browse the repository at this point in the history
* order flags

* fix govulncheck error
  • Loading branch information
ermanimer committed Jul 4, 2023
1 parent c3ae2ea commit 95bae86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: go install golang.org/x/vuln/cmd/govulncheck@latest

- name: Run govulncheck
run: govulncheck -v ./...
run: govulncheck ./...

test:
needs: govulncheck
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ PowerShell:
## Flags

- `--encrypted`: If this flag is set, the input zip files are expected to be encrypted zip files. The password for decryption should be stored in the `PASSWORD` environment variable.
- `--unzip`: If this flag is set, the output file will not be a zip file. If this flag is not set and the input zip files are encrypted, the output file will also be an encrypted zip file.
- `--input`: The input zip files should be specified specified using the glob pattern. For example, "inputs/image*.zip" will match all files under inputs folder having image prefix with .zip file extension. Note that, matched files are sorted before processing.
- `--output`: The output file path.
- `--unzip`: If this flag is set, the output file will not be a zip file. If this flag is not set and the input zip files are encrypted, the output file will also be an encrypted zip file.

## Help

Expand Down

0 comments on commit 95bae86

Please sign in to comment.