File tree Expand file tree Collapse file tree 12 files changed +20
-29
lines changed
Expand file tree Collapse file tree 12 files changed +20
-29
lines changed Original file line number Diff line number Diff line change 33 "build" : {
44 "dockerfile" : " Dockerfile" ,
55 "args" : {
6- "DEV_VERSION" : " v47 " ,
6+ "DEV_VERSION" : " v48 " ,
77 "http_proxy" : " ${localEnv:http_proxy}" ,
88 "https_proxy" : " ${localEnv:https_proxy}"
99 }
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ permissions:
2323jobs :
2424 build :
2525 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
26- container : ghcr.io/linkerd/dev:v47 -rust
26+ container : ghcr.io/linkerd/dev:v48 -rust
2727 timeout-minutes : 20
2828 continue-on-error : true
2929 steps :
Original file line number Diff line number Diff line change 4343 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
4444 timeout-minutes : 30
4545 container :
46- image : docker://ghcr.io/linkerd/dev:v47 -rust
46+ image : docker://ghcr.io/linkerd/dev:v48 -rust
4747 options : --security-opt seccomp=unconfined # 🤷
4848 env :
4949 CXX : " /usr/bin/clang++-19"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ permissions:
2323jobs :
2424 build :
2525 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
26- container : ghcr.io/linkerd/dev:v47 -rust
26+ container : ghcr.io/linkerd/dev:v48 -rust
2727 timeout-minutes : 20
2828 continue-on-error : true
2929 steps :
Original file line number Diff line number Diff line change 7676 if : needs.meta.outputs.actions_changed == 'true'
7777 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
7878 steps :
79- - uses : linkerd/dev/actions/setup-tools@v47
79+ - uses : linkerd/dev/actions/setup-tools@4c8dc566b8c409aeca86de792e8e78ff26cff3f0
8080 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
8181 - run : just action-lint
8282 - run : just action-dev-check
8585 needs : meta
8686 if : needs.meta.outputs.cargo_changed == 'true' || needs.meta.outputs.rust_changed == 'true'
8787 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
88- container : ghcr.io/linkerd/dev:v47 -rust
88+ container : ghcr.io/linkerd/dev:v48 -rust
8989 permissions :
9090 contents : read
9191 timeout-minutes : 20
@@ -108,7 +108,7 @@ jobs:
108108 if : needs.meta.outputs.cargo_changed == 'true'
109109 timeout-minutes : 20
110110 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
111- container : ghcr.io/linkerd/dev:v47 -rust
111+ container : ghcr.io/linkerd/dev:v48 -rust
112112 strategy :
113113 matrix :
114114 crate : ${{ fromJson(needs.meta.outputs.cargo_crates) }}
@@ -127,7 +127,7 @@ jobs:
127127 env :
128128 WAIT_TIMEOUT : 2m
129129 steps :
130- - uses : linkerd/dev/actions/setup-tools@v47
130+ - uses : linkerd/dev/actions/setup-tools@4c8dc566b8c409aeca86de792e8e78ff26cff3f0
131131 - name : scurl https://run.linkerd.io/install-edge | sh
132132 run : |
133133 scurl https://run.linkerd.io/install-edge | sh
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ jobs:
155155 continue-on-error : ${{ needs.meta.outputs.publish != 'true' }}
156156 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
157157 timeout-minutes : 40
158- container : docker://ghcr.io/linkerd/dev:v47 -rust-musl
158+ container : docker://ghcr.io/linkerd/dev:v48 -rust-musl
159159 env :
160160 LINKERD2_PROXY_VENDOR : ${{ github.repository_owner }}
161161 LINKERD2_PROXY_VERSION : ${{ needs.meta.outputs.version }}
Original file line number Diff line number Diff line change 1515 timeout-minutes : 5
1616 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
1717 steps :
18- - uses : linkerd/dev/actions/setup-tools@v47
18+ - uses : linkerd/dev/actions/setup-tools@4c8dc566b8c409aeca86de792e8e78ff26cff3f0
1919 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2020 - run : just sh-lint
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ permissions:
1414jobs :
1515 devcontainer :
1616 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
17- container : ghcr.io/linkerd/dev:v47 -rust
17+ container : ghcr.io/linkerd/dev:v48 -rust
1818 steps :
1919 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2020 - run : git config --global --add safe.directory "$PWD" # actions/runner#2033
3737 workflows :
3838 runs-on : ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
3939 steps :
40- - uses : linkerd/dev/actions/setup-tools@v47
40+ - uses : linkerd/dev/actions/setup-tools@4c8dc566b8c409aeca86de792e8e78ff26cff3f0
4141 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
4242 - shell : bash
4343 run : |
Original file line number Diff line number Diff line change 33# This is intended **DEVELOPMENT ONLY**, i.e. so that proxy developers can
44# easily test the proxy in the context of the larger `linkerd2` project.
55
6- ARG RUST_IMAGE=ghcr.io/linkerd/dev:v47 -rust
6+ ARG RUST_IMAGE=ghcr.io/linkerd/dev:v48 -rust
77
88# Use an arbitrary ~recent edge release image to get the proxy
99# identity-initializing and linkerd-await wrappers.
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ where
226226
227227 fn poll ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < Self :: Output > {
228228 let this = self . project ( ) ;
229- let res = futures:: ready!( this. inner. poll( cx) ) . map_err ( Into :: into ) ;
229+ let res = futures:: ready!( this. inner. poll( cx) ) ;
230230 let mut state = this. state . take ( ) ;
231231 match res {
232232 Ok ( rsp) => {
You can’t perform that action at this time.
0 commit comments