diff --git a/includes/README.md b/includes/README.md index f43c68e..a3e570b 100644 --- a/includes/README.md +++ b/includes/README.md @@ -17,7 +17,7 @@ git remote add makefile https://github.com/sacloud/makefile.git #### 追加(初回のみ) ```bash -git subtree add --prefix=includes --squash makefile v0.0.6 +git subtree add --prefix=includes --squash makefile v0.0.7 ``` 利用する側のプロジェクトではMakefileを以下のように記述します。 @@ -41,7 +41,7 @@ tools: dev-tools # toolsゴールはsacloudプロダクト向け日次CIを行 #### 更新 ```bash -git subtree pull --prefix=includes --squash makefile v0.0.6 +git subtree pull --prefix=includes --squash makefile v0.0.7 ``` ## License diff --git a/includes/go/common.mk b/includes/go/common.mk index 238867b..3ad7a57 100644 --- a/includes/go/common.mk +++ b/includes/go/common.mk @@ -19,7 +19,7 @@ COPYRIGHT_YEAR ?= 2022 COPYRIGHT_FILES ?= $$(find . -name "*.go" -print | grep -v "/vendor/") GO ?= go DEFAULT_GOALS ?= fmt set-license go-licenses-check goimports lint test -GOLANG_CI_LINT_VERSION ?= v1.46.2 +GOLANG_CI_LINT_VERSION ?= v1.49.0 TEXTLINT_ACTION_VERSION ?= v0.0.3 .DEFAULT_GOAL = default