Skip to content

Commit

Permalink
feat: update ci and tools versions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiola committed Jan 2, 2024
1 parent d0bd13d commit 6896df5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# All files
* @mia-platform/sig-cli
# Actions must also be checked by security
.github/actions @mia-platform/sig-cli @mia-platform/sig-security
3 changes: 3 additions & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@ MD029:
MD033:
allowed_elements:
- center
- picture
- source
- img
MD046:
style: fenced
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ decisions when appropriate.

This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
Examples of representing our community include using an official email address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.

Expand Down
2 changes: 1 addition & 1 deletion tools/make/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ go/build/multiarch:
.PHONY: build-deps
build-deps:

$(GORELEASER_PATH): $(TOOLS_DIR)/GORELEASER_VERSION
$(TOOLS_BIN)/goreleaser: $(TOOLS_DIR)/GORELEASER_VERSION
$(eval GORELEASER_VERSION:= $(shell cat $<))
mkdir -p $(TOOLS_BIN)
$(info Installing goreleaser $(GORELEASER_VERSION) bin in $(TOOLS_BIN))
Expand Down
4 changes: 2 additions & 2 deletions tools/make/lint.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ golangci-lint: $(GOLANGCI_PATH)
$(GOLANGCI_PATH) run --out-format=$(GOLANGCI_LINT_MODE) --config=.golangci.yaml

lint-deps: $(GOLANGCI_PATH)
$(GOLANGCI_PATH): $(TOOLS_DIR)/GOLANGCI_LINT_VERSION
$(TOOLS_BIN)/golangci-lint: $(TOOLS_DIR)/GOLANGCI_LINT_VERSION
$(eval GOLANGCI_LINT_VERSION:= $(shell cat $<))
mkdir -p $(TOOLS_BIN)
$(info Installing golangci-lint $(GOLANGCI_LINT_VERSION) bin in $(TOOLS_BIN))
Expand All @@ -47,7 +47,7 @@ lint: gomod-lint
gomod-lint:
$(info Running go mod tidy)
# Always keep this version to latest -1 version of Go
go mod tidy -compat=1.18
go mod tidy -compat=1.20

.PHONY: ci-lint
ci-lint: lint
Expand Down

0 comments on commit 6896df5

Please sign in to comment.