Skip to content

Commit 78ea6c2

Browse files
committed
chore: bump dev to v48
- rust v1.90.0 - clippy lints addressed
1 parent 01e79f9 commit 78ea6c2

File tree

12 files changed

+20
-29
lines changed

12 files changed

+20
-29
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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
}

.github/workflows/beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permissions:
2323
jobs:
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:

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
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"

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permissions:
2323
jobs:
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:

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
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
@@ -85,7 +85,7 @@ jobs:
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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 }}

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
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

.github/workflows/toolchain.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
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
@@ -37,7 +37,7 @@ jobs:
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: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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.

linkerd/http/prom/src/record_response.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) => {

0 commit comments

Comments
 (0)