Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ updates:
- "ok-to-test"
schedule:
interval: "weekly"
# Align with MintMaker minimumReleaseAge (~3 days) for supply-chain delay
cooldown:
default-days: 3
# Enable auto-merge for patch and minor updates
open-pull-requests-limit: 10
ignore:
Expand All @@ -21,6 +24,9 @@ updates:
- "ok-to-test"
schedule:
interval: "weekly"
# Align with MintMaker minimumReleaseAge (~3 days) for supply-chain delay
cooldown:
default-days: 3
# Enable auto-merge for patch and minor updates
open-pull-requests-limit: 10
# Group related updates together to reduce PR volume
Expand Down
2 changes: 2 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
version: "2"
run:
modules-download-mode: readonly
timeout: 15m
concurrency: 2
linters:
default: none
enable:
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ getlint:
curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b $(GOPATH)/bin $(GOLANGCI_LINT_VERSION)
.PHONY: lint
lint: getlint
$(GOPATH)/bin/golangci-lint run --timeout 5m
GOTOOLCHAIN=$(GO_VERSION) go mod download
$(GOPATH)/bin/golangci-lint run --timeout 15m

ensure-goreleaser:
@command -v goreleaser >/dev/null 2>&1 || go install github.com/goreleaser/goreleaser/v2@${GORELEASER_VERSION}
Expand Down