-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(lint): fix super linter (again) (#14)
* chore(lint): satisfy gitleaks If a variable name contains the word KEY, gitleaks does not like it and flags it as a potential secret. I have changed the name of the variable in these files from KEYALGO to ALGO since it is not a secret but rather the algorithm of the key generation. That silences gitleaks. * chore(lint): placate YAML linter added a blank line at the end of `.golangci.yml` * chore(lint): activate Docker / IAAS linter * chore(lint): placate shellcheck * chore(lint): placate markdownlint * chore(lint): placate markdownlint from `lint.yml` The previous commit worked on the markdownlint from the super-linter. * build: use test keyring in localnet The OS keyring may not always be available. * chore(lint): merge docker RUN statements It can potentially reduce the number of layers in the image, making it smaller and more efficient to build and pull. * fix(localnet): remove seed URL upon init * chore(lint): some lint suggestions for Dockerfile Note that this file is used from the root of the project via `make localnet-build`, which is why the paths work. * chore(lint): apply shfmt * chore(lint): add docker healthcheck and user * chore(build): update release go version to 1.21 * chore(ci): add permissions to workflows * chore(ci): skip generated files * chore(ci): placate yaml linter * chore(ci): use correct argument name for checkov * chore(ci): add top level permissions to codeql * chore(ci): add json super linter to match develop * chore(ci): disable JSON super linter * chore(lint): trigger lint workflows with comment * chore(deps): upgrade protobuf to 1.33.0 CVE-2024-24786 / GO-2024-2611 is fixed with this upgrade. Even though this package is fundamental to our system, the changes between 1.31.0 and 1.33.0 are minor. * Revert "chore(deps): upgrade protobuf to 1.33.0" This reverts commit c09f986. * chore(deps): update protobuf A vulnerability has been fixed in v1.33.0 of google.golang.org/protobuf and we must update the associated github.com/golang/protobuf as well. * chore(ci): coverage badge comment on PR * chore(build): exclude testutil from coverage * chore(ci): add test coverage commenting workflow * chore(ci): use step output instead of env * chore(ci): add commit hash in test comment * chore(ci): remove deprecated output The test workflow will not fully run right now because it runs on `pull_request_target` which must be merged into the base branch first.
- Loading branch information
1 parent
6e812e9
commit 3ded4ac
Showing
37 changed files
with
288 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
skip-path: | ||
# auto generated | ||
- client/docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
name: AnteHandler Benchmark Tests | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: | ||
push: | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
name: E2E Test Release | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
name: E2E Test | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
name: goreleaser | ||
|
||
permissions: | ||
# github releases | ||
contents: write | ||
|
||
on: | ||
push: | ||
tags: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
name: "Pull Request Labeler" | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
on: | ||
pull_request_target: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,9 @@ on: | |
paths: | ||
- "proto/**" | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,6 @@ localnet-setup | |
.testnets | ||
|
||
# Testing | ||
coverage.txt | ||
*.out | ||
sim_log_file | ||
tests/**/tmp/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.