-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replace statik with go:embed * no longer required * linter needs go 1.16 as well * try with newer golangci-lint version * try with newer golangci-lint version * try with newer golangci-lint version * try with newer golangci-lint version * make golangci-lint run -p bugs happy * Adopt linter changes * simplify version header handling in test Co-authored-by: Markus Fensterer <[email protected]>
- Loading branch information
Showing
16 changed files
with
246 additions
and
187 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 |
---|---|---|
|
@@ -11,12 +11,14 @@ jobs: | |
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Go 1.16 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.16.x' | ||
- name: Lint | ||
uses: golangci/golangci-lint-action@v2 | ||
- name: Set up Go 1.15 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.15.x' | ||
args: -p bugs | ||
- name: Build project | ||
run: make | ||
- name: Docker Login | ||
|
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 |
---|---|---|
|
@@ -14,12 +14,14 @@ jobs: | |
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
- name: Set up Go 1.16 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.16.x' | ||
- name: Lint | ||
uses: golangci/golangci-lint-action@v2 | ||
- name: Set up Go 1.15 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.15.x' | ||
args: -p bugs | ||
- name: Build project | ||
run: make | ||
- name: Docker Login | ||
|
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 |
---|---|---|
|
@@ -11,12 +11,14 @@ jobs: | |
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
- name: Set up Go 1.16 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.16.x' | ||
- name: Lint | ||
uses: golangci/golangci-lint-action@v2 | ||
- name: Set up Go 1.15 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.15.x' | ||
args: -p bugs | ||
- name: Build project | ||
run: make | ||
- name: Create Release | ||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
.idea/ | ||
bin/ | ||
metal-networker.tgz | ||
**/*/statik.go |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
module github.com/metal-stack/metal-networker | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/coreos/go-systemd/v22 v22.1.0 | ||
github.com/google/go-cmp v0.5.4 | ||
github.com/magiconair/properties v1.8.4 // indirect | ||
github.com/metal-stack/metal-go v0.13.0 | ||
github.com/metal-stack/metal-lib v0.6.9 | ||
github.com/metal-stack/v v1.0.2 | ||
github.com/mitchellh/mapstructure v1.3.3 // indirect | ||
github.com/coreos/go-systemd/v22 v22.3.1 | ||
github.com/google/go-cmp v0.5.5 | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/metal-stack/metal-go v0.14.0 | ||
github.com/metal-stack/metal-lib v0.7.2 | ||
github.com/metal-stack/v v1.0.3 | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/pelletier/go-toml v1.8.1 // indirect | ||
github.com/rakyll/statik v0.1.7 | ||
github.com/spf13/afero v1.4.1 // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.1.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.7.1 | ||
github.com/stretchr/testify v1.7.0 | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.16.0 | ||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect | ||
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
inet.af/netaddr v0.0.0-20210129185718-d0669448cef6 | ||
inet.af/netaddr v0.0.0-20210403172118-1e1430f727e0 | ||
) |
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
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
This file was deleted.
Oops, something went wrong.