-
Notifications
You must be signed in to change notification settings - Fork 255
chore(deps): vendor dependencies #4900
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
soltysh
wants to merge
4
commits into
zarf-dev:main
Choose a base branch
from
soltysh:vendor
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
f2b7352
chore(deps): populate vendor directory
soltysh 1767c2d
chore(deps): update tools and workflows to use vendored deps
soltysh 19910c4
chore(build): remove go mod tidy from building
soltysh e03efb1
chore(deps): update .gitignore to allow vendoring to work correctly
soltysh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ updates: | |
| - package-ecosystem: gomod | ||
| directories: | ||
| - "/" | ||
| vendor: true | ||
| schedule: | ||
| interval: daily | ||
| groups: | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -82,7 +82,6 @@ destroy: ## Run `zarf destroy` on the current cluster | |
| # Note: the path to the main.go file is not used due to https://github.com/golang/go/issues/51831#issuecomment-1074188363 | ||
| .PHONY: build | ||
| build: ## Build the Zarf CLI for the machines OS and architecture | ||
| go mod tidy | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Matter of preference, but I like having go mod tidy here so I don't have to remember to run it before I commit. Thoughts on adding back |
||
| $(MAKE) $(BUILD_CLI_FOR_SYSTEM) | ||
|
|
||
| build-cli-linux-amd: ## Build the Zarf CLI for Linux on AMD64 | ||
|
|
||
This file contains hidden or 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,31 @@ | ||
| ### Go template | ||
| # Binaries for programs and plugins | ||
| *.exe | ||
| *.exe~ | ||
| *.dll | ||
| *.so | ||
| *.dylib | ||
|
|
||
| # Test binary, built with `go test -c` | ||
| *.test | ||
|
|
||
| # Output of the go coverage tool, specifically when used with LiteIDE | ||
| *.out | ||
|
|
||
| # Dependency directories (remove the comment below to include it) | ||
| vendor/ | ||
|
|
||
| ### IntelliJ | ||
| .idea | ||
| *.iml | ||
| out | ||
| gen | ||
|
|
||
| ### VisualStudioCode | ||
| .vscode | ||
| *.code-workspace | ||
|
|
||
| ### macOS | ||
| # General | ||
| .DS_Store | ||
| experimenting |
This file contains hidden or 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,99 @@ | ||
| linters-settings: | ||
| gocritic: | ||
| enabled-tags: | ||
| - diagnostic | ||
| - experimental | ||
| - opinionated | ||
| - performance | ||
| - style | ||
| disabled-checks: | ||
| - dupImport | ||
| - ifElseChain | ||
| - octalLiteral | ||
| - whyNoLint | ||
| - wrapperFunc | ||
| - exitAfterDefer | ||
| - hugeParam | ||
| - ptrToRefParam | ||
| - paramTypeCombine | ||
| - unnamedResult | ||
| linters: | ||
| disable-all: true | ||
| enable: | ||
| # default linters | ||
| - errcheck | ||
| - gosimple | ||
| - govet | ||
| - ineffassign | ||
| - staticcheck | ||
| - typecheck | ||
| - unused | ||
| # additional linters | ||
| - asasalint | ||
| - asciicheck | ||
| - bidichk | ||
| - bodyclose | ||
| - containedctx | ||
| - contextcheck | ||
| - decorder | ||
| - dupl | ||
| - durationcheck | ||
| - errchkjson | ||
| - errname | ||
| - errorlint | ||
| - exhaustive | ||
| - exhaustruct | ||
| - exportloopref | ||
| - forcetypeassert | ||
| - gocheckcompilerdirectives | ||
| - gocritic | ||
| - godot | ||
| - godox | ||
| - goerr113 | ||
| - gofmt | ||
| - goprintffuncname | ||
| - gosec | ||
| - gosmopolitan | ||
| - importas | ||
| - ireturn | ||
| - nakedret | ||
| - nestif | ||
| - nilerr | ||
| - nilnil | ||
| - prealloc | ||
| - predeclared | ||
| - revive | ||
| - rowserrcheck | ||
| - tagalign | ||
| - tenv | ||
| - thelper | ||
| - tparallel | ||
| - unconvert | ||
| - unparam | ||
| - usestdlibvars | ||
| - wastedassign | ||
| - whitespace | ||
| - wrapcheck | ||
| - wsl | ||
| - gocyclo | ||
| - misspell | ||
| issues: | ||
| include: | ||
| - EXC0012 | ||
| - EXC0014 | ||
| exclude-rules: | ||
| - path: _test\.go | ||
| linters: | ||
| - gocyclo | ||
| - errcheck | ||
| - dupl | ||
| - gosec | ||
| - gocritic | ||
| - linters: | ||
| - gocritic | ||
| text: "unnecessaryDefer:" | ||
| - linters: | ||
| - gocritic | ||
| text: "preferDecodeRune:" | ||
| service: | ||
| golangci-lint-version: 1.53.x |
This file contains hidden or 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,20 @@ | ||
| <a name="unreleased"></a> | ||
| ## [Unreleased] | ||
|
|
||
|
|
||
| <a name="v0.0.1"></a> | ||
| ## v0.0.1 - 2021-05-09 | ||
| ### Features | ||
| - implement `Area` | ||
| - add `ClearLinesUp` and `ClearLinesDown` | ||
| - implement cross-platform support | ||
| - implement cursor functions | ||
|
|
||
| ### Bug Fixes | ||
| - height can no longer be negative on non windows systems | ||
|
|
||
| ### Code Refactoring | ||
| - remove debug code | ||
|
|
||
|
|
||
| [Unreleased]: https://github.com/MarvinJWendt/testza/compare/v0.0.1...HEAD |
This file contains hidden or 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,21 @@ | ||
| MIT License | ||
|
|
||
| Copyright (c) 2020 Marvin Wendt (MarvinJWendt) | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The intent of this was for this location to be excluded, we can just set it explicitly