-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Alpine 3.14 / Golang 1.17 * update lint * Fix load
- Loading branch information
Showing
6 changed files
with
14 additions
and
16 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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
uses: golangci/[email protected] | ||
with: | ||
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | ||
version: v1.31 | ||
version: v1.43 | ||
|
||
# Optional: working directory, useful for monorepos | ||
# working-directory: somedir | ||
|
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,11 +1,11 @@ | ||
image: homeassistant/{machine}-homeassistant | ||
shadow_repository: ghcr.io/home-assistant | ||
build_from: | ||
aarch64: ghcr.io/home-assistant/aarch64-base:3.13 | ||
armv7: ghcr.io/home-assistant/armv7-base:3.13 | ||
armhf: ghcr.io/home-assistant/armhf-base:3.13 | ||
amd64: ghcr.io/home-assistant/amd64-base:3.13 | ||
i386: ghcr.io/home-assistant/i386-base:3.13 | ||
aarch64: ghcr.io/home-assistant/aarch64-base:3.14 | ||
armv7: ghcr.io/home-assistant/armv7-base:3.14 | ||
armhf: ghcr.io/home-assistant/armhf-base:3.14 | ||
amd64: ghcr.io/home-assistant/amd64-base:3.14 | ||
i386: ghcr.io/home-assistant/i386-base:3.14 | ||
codenotary: | ||
signer: [email protected] | ||
base_image: [email protected] | ||
|
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,8 +1,13 @@ | ||
module github.com/home-assistant/landingpage | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/grandcat/zeroconf v1.0.0 | ||
github.com/rs/xid v1.3.0 | ||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect | ||
github.com/miekg/dns v1.1.27 // indirect | ||
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 // indirect | ||
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect | ||
golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe // indirect | ||
) |