Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkato committed Oct 9, 2024
1 parent 9d906f4 commit 3e93b82
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
skip-go-installation: true
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
Expand Down
2 changes: 1 addition & 1 deletion internal/lint/code/comments_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func TestComments(t *testing.T) {
markup := toJSON(comments)
if markup != string(b2) {
bin := filepath.Join(binDir, fmt.Sprintf("%d.json", i))
_ = os.WriteFile(bin, []byte(markup), os.ModePerm)
_ = os.WriteFile(bin, []byte(markup), 0600)
t.Errorf("%s", markup)
}
}
Expand Down

0 comments on commit 3e93b82

Please sign in to comment.