chore: upgrade tailscale to v1.46.1 (#8913)

This commit is contained in:
Colin Adler
2023-08-09 14:50:26 -05:00
committed by GitHub
parent 5b9dc2ee8b
commit bc862fa493
25 changed files with 467 additions and 297 deletions

View File

@ -12,6 +12,8 @@ import (
"golang.org/x/exp/slices"
"golang.org/x/xerrors"
"github.com/coder/coder/coderd/util/slice"
)
func main() {
@ -161,9 +163,8 @@ func parseCIReport(report GotestsumReport) (CIReport, error) {
}
timeouts = timeoutsNorm
sortAZ := func(a, b string) bool { return a < b }
slices.SortFunc(packagesSortedByName, sortAZ)
slices.SortFunc(testSortedByName, sortAZ)
slices.SortFunc(packagesSortedByName, slice.Ascending[string])
slices.SortFunc(testSortedByName, slice.Ascending[string])
var rep CIReport