diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee9b62fdcd875c611e481b2372864c1e3558f1ab..3e361a476667cdda475957fcdfabe7d7eb752905 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 . diff --git a/README.md b/README.md index 6c5cfb903dad5757efe010a13a38f638f57bf59d..95f98c6a130cec69deccf98ea54cc17f43d4d151 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/cmd/cli/app/upload.go b/cmd/cli/app/upload.go index f3d1afca6de1bff54c21d179cfbb4f0b10164098..332f30cc7e369253c247e4254ebd8a68c5dbb13d 100644 --- a/cmd/cli/app/upload.go +++ b/cmd/cli/app/upload.go @@ -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) }