Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19 # https://golang.org/dl/
go-version: stable # https://golang.org/dl/
- name: Docker Login
uses: docker/login-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19 # https://golang.org/dl/
go-version: stable # https://golang.org/dl/
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Hadolint
Expand Down
3 changes: 0 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ linters:
- bodyclose
- containedctx
- contextcheck
- deadcode
- durationcheck
- errcheck
- errname
Expand Down Expand Up @@ -44,7 +43,6 @@ linters:
- predeclared
- revive
- staticcheck
- structcheck
- stylecheck
- tagliatelle
- tenv
Expand All @@ -54,7 +52,6 @@ linters:
- unconvert
- unparam
- unused
- varcheck
- wastedassign
- whitespace
- wrapcheck
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/loomhq/lock-exec

go 1.19
go 1.20

require (
github.com/aws/aws-sdk-go-v2 v1.17.5
Expand Down