Skip to content

Commit 3290ab1

Browse files
authored
build(deps): Update Rust to v1.53.0 (#1108)
More info at https://github.com/rust-lang/rust/releases/tag/1.53.0
1 parent 0fa39ed commit 3290ab1

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/actions/package/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=rust:1.52.1-buster
1+
ARG BASE_IMAGE=rust:1.53.0-buster
22
FROM $BASE_IMAGE
33
WORKDIR /linkerd
44
RUN apt-get update && \

.github/workflows/advisory.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
timeout-minutes: 40
2525
runs-on: ubuntu-latest
2626
container:
27-
image: docker://rust:1.52.1-buster
27+
image: docker://rust:1.53.0-buster
2828
permissions:
2929
contents: read
3030
strategy:

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 30
1515
container:
16-
image: docker://rust:1.52.1-buster
16+
image: docker://rust:1.53.0-buster
1717
options: --security-opt seccomp=unconfined
1818
steps:
1919
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
timeout-minutes: 5
2525
runs-on: ubuntu-latest
2626
container:
27-
image: docker://rust:1.52.1-buster
27+
image: docker://rust:1.53.0-buster
2828
permissions:
2929
contents: read
3030
steps:
@@ -37,7 +37,7 @@ jobs:
3737
timeout-minutes: 20
3838
runs-on: ubuntu-latest
3939
container:
40-
image: docker://rust:1.52.1-buster
40+
image: docker://rust:1.53.0-buster
4141
permissions:
4242
contents: read
4343
steps:
@@ -49,7 +49,7 @@ jobs:
4949
timeout-minutes: 5
5050
runs-on: ubuntu-latest
5151
container:
52-
image: docker://rust:1.52.1-buster
52+
image: docker://rust:1.53.0-buster
5353
permissions:
5454
contents: read
5555
steps:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# :; docker buildx build . --load
1818

1919
# Please make changes via update-rust-version.sh
20-
ARG RUST_IMAGE=rust:1.52.1-buster
20+
ARG RUST_IMAGE=rust:1.53.0-buster
2121

2222
# Use an arbitrary ~recent edge release image to get the proxy
2323
# identity-initializing and linkerd-await wrappers.
@@ -41,7 +41,7 @@ RUN --mount=type=cache,target=/var/lib/apt/lists \
4141
WORKDIR /usr/src/linkerd2-proxy
4242
COPY . .
4343
RUN --mount=type=cache,target=target \
44-
--mount=type=cache,from=rust:1.52.1-buster,source=/usr/local/cargo,target=/usr/local/cargo \
44+
--mount=type=cache,from=rust:1.53.0-buster,source=/usr/local/cargo,target=/usr/local/cargo \
4545
mkdir -p /out && \
4646
if [ -n "$PROXY_UNOPTIMIZED" ]; then \
4747
(cd linkerd2-proxy && /usr/bin/time -v cargo build --locked --features="$PROXY_FEATURES") && \

linkerd/tls/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl std::fmt::Debug for NegotiatedProtocol {
3939
}
4040

4141
impl NegotiatedProtocolRef<'_> {
42-
pub fn to_owned(&self) -> NegotiatedProtocol {
42+
pub fn to_owned(self) -> NegotiatedProtocol {
4343
NegotiatedProtocol(self.0.into())
4444
}
4545
}

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.52.1
1+
1.53.0

0 commit comments

Comments
 (0)