-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
702c848
commit 3dbe4ed
Showing
5 changed files
with
86 additions
and
47 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
GOLANGCI_LINT_VERSION := v1.59 | ||
GOLANGCI_LINT_VERSION := v1.62 | ||
|
||
.PHONY: lint | ||
lint: | ||
|
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,34 +1,35 @@ | ||
module github.com/texas-state-space-lab/pikvm-tailscale-certificate-renewer | ||
|
||
go 1.22.5 | ||
go 1.23.4 | ||
|
||
require ( | ||
github.com/coreos/go-systemd/v22 v22.5.0 | ||
tailscale.com v1.68.2 | ||
tailscale.com v1.78.3 | ||
) | ||
|
||
require ( | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/akutz/memconn v0.1.0 // indirect | ||
github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa // indirect | ||
github.com/dblohm7/wingoes v0.0.0-20240119213807-a09d6be7affa // indirect | ||
github.com/fxamacker/cbor/v2 v2.5.0 // indirect | ||
github.com/dblohm7/wingoes v0.0.0-20240820181039-f2b84150679e // indirect | ||
github.com/fxamacker/cbor/v2 v2.7.0 // indirect | ||
github.com/go-json-experiment/json v0.0.0-20241209202007-cef7d841f55f // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/hdevalence/ed25519consensus v0.2.0 // indirect | ||
github.com/josharian/native v1.1.1-0.20230202152459-5c7d0dd6ab86 // indirect | ||
github.com/jsimonetti/rtnetlink v1.4.0 // indirect | ||
github.com/jsimonetti/rtnetlink v1.4.2 // indirect | ||
github.com/mdlayher/netlink v1.7.2 // indirect | ||
github.com/mdlayher/socket v0.5.0 // indirect | ||
github.com/mdlayher/socket v0.5.1 // indirect | ||
github.com/mitchellh/go-ps v1.0.0 // indirect | ||
github.com/tailscale/go-winio v0.0.0-20231025203758-c4f33415bf55 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
go4.org/mem v0.0.0-20220726221520-4f986261bf13 // indirect | ||
go4.org/mem v0.0.0-20240501181205-ae6ca9944745 // indirect | ||
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/crypto v0.31.0 // indirect | ||
golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect | ||
golang.org/x/net v0.32.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect | ||
) |
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