File tree 8 files changed +14
-13
lines changed
8 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " linkerd2-proxy-api" ,
3
- "image" : " ghcr.io/linkerd/dev:v39 " ,
3
+ "image" : " ghcr.io/linkerd/dev:v42 " ,
4
4
"customizations" : {
5
5
"vscode" : {
6
6
"extensions" : [
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
14
14
runs-on : ubuntu-latest
15
15
timeout-minutes : 10
16
16
steps :
17
- - uses : linkerd/dev/actions/setup-tools@v39
17
+ - uses : linkerd/dev/actions/setup-tools@v42
18
18
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
19
19
- run : just-dev lint-actions
20
20
21
21
devcontainer-versions :
22
22
runs-on : ubuntu-latest
23
23
steps :
24
- - uses : linkerd/dev/actions/setup-tools@v39
24
+ - uses : linkerd/dev/actions/setup-tools@v42
25
25
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
26
26
- run : just-dev check-action-images
Original file line number Diff line number Diff line change 16
16
go :
17
17
timeout-minutes : 5
18
18
runs-on : ubuntu-latest
19
- container : docker://ghcr.io/linkerd/dev:v39 -go
19
+ container : docker://ghcr.io/linkerd/dev:v42 -go
20
20
steps :
21
21
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
22
22
- run : just go-mod-check
Original file line number Diff line number Diff line change 40
40
test :
41
41
timeout-minutes : 5
42
42
runs-on : ubuntu-latest
43
- container : docker://ghcr.io/linkerd/dev:v39 -rust
43
+ container : docker://ghcr.io/linkerd/dev:v42 -rust
44
44
steps :
45
45
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
46
46
- run : just rs-fetch
55
55
contents : write
56
56
timeout-minutes : 5
57
57
runs-on : ubuntu-latest
58
- container : docker://ghcr.io/linkerd/dev:v39 -rust
58
+ container : docker://ghcr.io/linkerd/dev:v42 -rust
59
59
steps :
60
60
- if : needs.meta.outputs.publish
61
61
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
79
79
needs : [meta, release]
80
80
timeout-minutes : 10
81
81
runs-on : ubuntu-latest
82
- container : docker://ghcr.io/linkerd/dev:v39 -rust
82
+ container : docker://ghcr.io/linkerd/dev:v42 -rust
83
83
steps :
84
84
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
85
85
- if : ' !needs.meta.outputs.publish'
Original file line number Diff line number Diff line change 22
22
gen-check :
23
23
timeout-minutes : 10
24
24
runs-on : ubuntu-latest
25
- container : docker://ghcr.io/linkerd/dev:v39 -rust
25
+ container : docker://ghcr.io/linkerd/dev:v42 -rust
26
26
steps :
27
27
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
28
28
- run : just rs-fetch
31
31
rust-clippy :
32
32
timeout-minutes : 10
33
33
runs-on : ubuntu-latest
34
- container : docker://ghcr.io/linkerd/dev:v39 -rust
34
+ container : docker://ghcr.io/linkerd/dev:v42 -rust
35
35
steps :
36
36
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
37
37
- run : just rs-fetch
40
40
rust-docs :
41
41
timeout-minutes : 10
42
42
runs-on : ubuntu-latest
43
- container : docker://ghcr.io/linkerd/dev:v39 -rust
43
+ container : docker://ghcr.io/linkerd/dev:v42 -rust
44
44
steps :
45
45
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
46
46
- run : just rs-fetch
49
49
rust-test :
50
50
timeout-minutes : 10
51
51
runs-on : ubuntu-latest
52
- container : docker://ghcr.io/linkerd/dev:v39 -rust
52
+ container : docker://ghcr.io/linkerd/dev:v42 -rust
53
53
steps :
54
54
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
55
55
- run : just rs-fetch
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
21
21
. build_client ( true )
22
22
. build_server ( true )
23
23
. out_dir ( out_dir)
24
- . compile ( & * proto_files, & [ proto_dir] )
24
+ . compile ( & proto_files, & [ proto_dir] )
25
25
{
26
26
eprintln ! ( "{}" , e. to_string( ) . replace( "\\ n" , "\n " ) . trim_end( ) ) ;
27
27
std:: process:: exit ( 1 ) ;
Original file line number Diff line number Diff line change 1
1
module github.com/linkerd/linkerd2-proxy-api
2
2
3
- go 1.19
3
+ go 1.21
4
4
5
5
require (
6
6
github.com/golang/protobuf v1.5.3
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg
3
3
github.com/golang/protobuf v1.5.3 /go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY =
4
4
github.com/google/go-cmp v0.5.5 /go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE =
5
5
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38 =
6
+ github.com/google/go-cmp v0.5.9 /go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY =
6
7
golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM =
7
8
golang.org/x/net v0.17.0 /go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE =
8
9
golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE =
You can’t perform that action at this time.
0 commit comments