Skip to content

Commit

Permalink
Merge pull request #138 from yamamoto-febc/dependencies
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
yamamoto-febc committed Mar 5, 2024
2 parents 7114674 + bc5520f commit b9e8d90
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ issues:
linters:
disable-all: true
enable:
- depguard
- errcheck
- exportloopref
- gocritic
Expand All @@ -29,6 +28,7 @@ linters:

# don't enable:
# - asciicheck
# - depguard
# - dogsled
# - dupl
# - funlen
Expand Down
6 changes: 3 additions & 3 deletions includes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ git remote add makefile https://github.com/sacloud/makefile.git
#### 追加(初回のみ)

```bash
git subtree add --prefix=includes --squash makefile v0.0.7
git subtree add --prefix=includes --squash makefile v0.0.8
```

利用する側のプロジェクトではMakefileを以下のように記述します。
Expand All @@ -41,12 +41,12 @@ tools: dev-tools # toolsゴールはsacloudプロダクト向け日次CIを行
#### 更新

```bash
git subtree pull --prefix=includes --squash makefile v0.0.7
git subtree pull --prefix=includes --squash makefile v0.0.8
```

## License

`sacloud/makefile` Copyright (C) 2022 The sacloud/makefile Authors.
`sacloud/makefile` Copyright (C) 2022-2023 The sacloud/makefile Authors.

This project is published under [Apache 2.0 License](LICENSE).

6 changes: 3 additions & 3 deletions includes/go/common.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2022 The sacloud/makefile Authors
# Copyright 2022-2023 The sacloud/makefile Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,11 +15,11 @@
#

AUTHOR ?= The sacloud/makefile Authors
COPYRIGHT_YEAR ?= 2022
COPYRIGHT_YEAR ?= 2023
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.51.2
GOLANG_CI_LINT_VERSION ?= v1.56.2
TEXTLINT_ACTION_VERSION ?= v0.0.3

.DEFAULT_GOAL = default
Expand Down
2 changes: 1 addition & 1 deletion includes/go/single.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2022 The sacloud/makefile Authors
# Copyright 2022-2023 The sacloud/makefile Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down

0 comments on commit b9e8d90

Please sign in to comment.