Skip to content
Snippets Groups Projects
Commit 6ab0c32d authored by Bob Callaway's avatar Bob Callaway
Browse files

fix lint and correct typo

parent 4a92e737
No related branches found
No related tags found
No related merge requests found
......@@ -22,11 +22,11 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Lint it
- name: Setup golangci-lint Action
uses: nickhstr/action-setup-golangci-lint@v0.1.0
- name: golangci-lint
continue-on-error: true
uses: golangci/golangci-lint-action@v2
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: 1.31.0
version: v1.32
# Test It
- name: Test
run: go test -v .
......@@ -36,7 +36,7 @@ making an entry to the transparency log.
`rekor upload --rekor-server rekor.dev --signature <artifact-signature> --public-key <your_public_key> --artifact-url <url_to_artifact>`
Note that the `--artifact-url` must be a pubically accessable location. For example `--artifact-url https://example.com/releases/latest/my_project.tar.gz`
Note that the `--artifact-url` must be a publically accessable location. For example `--artifact-url https://example.com/releases/latest/my_project.tar.gz`
## Verify Proof of Entry
......
......@@ -130,7 +130,7 @@ of the release artifact and uploads it to the rekor server.`,
pub_key, err := pkg.FormatPubKey(publicKey)
if err != nil {
log.Error("Pubic key validation failed: ", err)
log.Error("Public key validation failed: ", err)
os.Exit(1)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment