Skip to content

Commit

Permalink
update lint version
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Neznaykin committed Jun 6, 2024
1 parent f2dd559 commit b6bd6ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.22.2
go-version: 1.22.4

- name: lint
run: make lint
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.2-alpine as builder
FROM golang:1.22.4-alpine as builder

ARG version

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ race: dep ## Run data race detector

install-linter: ## Install golangci-lint
@mkdir -p bin
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b bin v1.57.2
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b bin v1.59.0
@bin/golangci-lint --version

lint: install-linter ## Lint the files
Expand Down

0 comments on commit b6bd6ff

Please sign in to comment.