File tree Expand file tree Collapse file tree 3 files changed +6
-16
lines changed Expand file tree Collapse file tree 3 files changed +6
-16
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ require (
8
8
github.com/mattn/go-colorable v0.1.13
9
9
github.com/mattn/go-runewidth v0.0.16
10
10
github.com/robfig/cron/v3 v3.0.1
11
- github.com/yuin/goldmark v1.7.7
11
+ github.com/yuin/goldmark v1.7.4
12
12
golang.org/x/sync v0.8.0
13
- golang.org/x/sys v0.26 .0
13
+ golang.org/x/sys v0.25 .0
14
14
gopkg.in/yaml.v3 v3.0.1
15
15
)
16
16
Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
14
14
github.com/rivo/uniseg v0.4.7 /go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88 =
15
15
github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs =
16
16
github.com/robfig/cron/v3 v3.0.1 /go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro =
17
- github.com/yuin/goldmark v1.7.7 h1:5m9rrB1sW3JUMToKFQfb+FGt1U7r57IHu5GrYrG2nqU =
18
- github.com/yuin/goldmark v1.7.7 /go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E =
17
+ github.com/yuin/goldmark v1.7.4 h1:BDXOHExt+A7gwPCJgPIIq7ENvceR7we7rOS9TNoLZeg =
18
+ github.com/yuin/goldmark v1.7.4 /go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E =
19
19
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ =
20
20
golang.org/x/sync v0.8.0 /go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk =
21
21
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
22
22
golang.org/x/sys v0.6.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
23
- golang.org/x/sys v0.26 .0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo =
24
- golang.org/x/sys v0.26 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
23
+ golang.org/x/sys v0.25 .0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34 =
24
+ golang.org/x/sys v0.25 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
25
25
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
26
26
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
27
27
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package actionlint
2
2
3
3
import (
4
4
"path"
5
- "sort"
6
5
"strings"
7
6
)
8
7
@@ -29,15 +28,6 @@ const (
29
28
compatWindows2022
30
29
)
31
30
32
- func buildAllGitHubHostedRunnerLabels () []string {
33
- l := make ([]string , 0 , len (defaultRunnerOSCompats ))
34
- for k := range defaultRunnerOSCompats {
35
- l = append (l , k )
36
- }
37
- sort .Strings (l )
38
- return l
39
- }
40
-
41
31
// https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
42
32
var allGitHubHostedRunnerLabels = []string {
43
33
"windows-latest" ,
You can’t perform that action at this time.
0 commit comments