-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to "tmpl-go" template repository version 0.5.0 (#5)
Updated to `tmpl-go` version 0.5.0 [1] (including version 0.4.0 [2]) that... 1. ...introduces the initial project documentation [3]. 2. ...updates golangci-lint to the currently latest version 1.32.0 [4] which introduces new linters like errorlint [5], tparallel [6] and wrapcheck [7]. 3. ...updates to "tmpl" version 0.7.0 (GH-25 [8] GH-34 [9]). This includes... - ...a new configuration file for automated dependency updates and security alerts [10] with Dependabot [11]. Next to update configurations for the CI/CD GitHub action workflow [12] and Yarn/NPM dependencies [13], the file has been extended to support Go modules [14]. - ...updates to the latest Node.js package dependency & GitHub Action versions. - ...a change of the NPM package name to use a namespace [15] which helps to prevent collisions with already existing NPM packages like tmpl [16]. [1]: https://github.com/svengreb/tmpl-go/releases/tag/v0.5.0 [2]: https://github.com/svengreb/tmpl-go/releases/tag/v0.4.0 [3]: svengreb/tmpl-go#32 [4]: svengreb/tmpl-go#21 [5]: https://github.com/polyfloyd/go-errorlint [6]: https://github.com/moricho/tparallel [7]: https://github.com/tomarrell/wrapcheck [8]: svengreb/tmpl-go#25 [9]: svengreb/tmpl-go#34 [10]: svengreb/tmpl#52 [11]: https://dependabot.com [12]: https://github.com/svengreb/tmpl#cicd-action-workflow [13]: https://github.com/svengreb/tmpl#nodejs-yarn-and-npm [14]: https://golang.org/ref/mod [15]: svengreb/tmpl#48 [16]: https://www.npmjs.com/package/tmpl Closes GH-4
- Loading branch information
Showing
5 changed files
with
74 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright (c) 2020-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
|
||
# Configuration for the native Dependabot integration. | ||
# See the official GitHub documentations for more details: | ||
# - https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates | ||
# - https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/about-dependabot-version-updates | ||
# - https://docs.github.com/en/free-pro-team@latest/github/managing-security-vulnerabilities/about-dependabot-security-updates | ||
# - https://github.com/features#features-security | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
reviewers: | ||
- "svengreb" | ||
labels: | ||
- "scope-quality" | ||
- "scope-security" | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
reviewers: | ||
- "svengreb" | ||
labels: | ||
- "scope-quality" | ||
- "scope-security" | ||
|
||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
reviewers: | ||
- "svengreb" | ||
labels: | ||
- "scope-quality" | ||
- "scope-security" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters