Skip to content

Commit 62ed64e

Browse files
authored
chore(build): bump linkerd/dev to v46 (#3984)
* Rust 1.88
1 parent e8de635 commit 62ed64e

File tree

75 files changed

+170
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+170
-209
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": "v45",
6+
"DEV_VERSION": "v46",
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: ubuntu-24.04
26-
container: ghcr.io/linkerd/dev:v45-rust
26+
container: ghcr.io/linkerd/dev:v46-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: ubuntu-24.04
4444
timeout-minutes: 30
4545
container:
46-
image: docker://ghcr.io/linkerd/dev:v45-rust
46+
image: docker://ghcr.io/linkerd/dev:v46-rust
4747
options: --security-opt seccomp=unconfined # 🤷
4848
env:
4949
CXX: "/usr/bin/clang++-19"

.github/workflows/fuzzers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
list-changed:
2828
timeout-minutes: 3
2929
runs-on: ubuntu-24.04
30-
container: docker://rust:1.83.0
30+
container: docker://rust:1.88.0
3131
steps:
3232
- run: apt update && apt install -y jo
3333
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -48,7 +48,7 @@ jobs:
4848
needs: [list-changed]
4949
timeout-minutes: 40
5050
runs-on: ubuntu-24.04
51-
container: docker://rust:1.83.0
51+
container: docker://rust:1.88.0
5252
strategy:
5353
matrix:
5454
dir: ${{ fromJson(needs.list-changed.outputs.dirs) }}

.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: ubuntu-24.04
26-
container: ghcr.io/linkerd/dev:v45-rust
26+
container: ghcr.io/linkerd/dev:v46-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: ubuntu-24.04
7878
steps:
79-
- uses: linkerd/dev/actions/setup-tools@v45
79+
- uses: linkerd/dev/actions/setup-tools@v46
8080
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
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: ubuntu-24.04
88-
container: ghcr.io/linkerd/dev:v45-rust
88+
container: ghcr.io/linkerd/dev:v46-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: ubuntu-24.04
111-
container: ghcr.io/linkerd/dev:v45-rust
111+
container: ghcr.io/linkerd/dev:v46-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@v45
130+
- uses: linkerd/dev/actions/setup-tools@v46
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
@@ -142,7 +142,7 @@ jobs:
142142
continue-on-error: ${{ needs.meta.outputs.publish != 'true' }}
143143
runs-on: ubuntu-24.04
144144
timeout-minutes: 40
145-
container: docker://ghcr.io/linkerd/dev:v45-rust-musl
145+
container: docker://ghcr.io/linkerd/dev:v46-rust-musl
146146
env:
147147
LINKERD2_PROXY_VENDOR: ${{ github.repository_owner }}
148148
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: ubuntu-24.04
1717
steps:
18-
- uses: linkerd/dev/actions/setup-tools@v45
18+
- uses: linkerd/dev/actions/setup-tools@v46
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
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: ubuntu-24.04
17-
container: ghcr.io/linkerd/dev:v45-rust
17+
container: ghcr.io/linkerd/dev:v46-rust
1818
steps:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2020
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
@@ -37,7 +37,7 @@ jobs:
3737
workflows:
3838
runs-on: ubuntu-24.04
3939
steps:
40-
- uses: linkerd/dev/actions/setup-tools@v45
40+
- uses: linkerd/dev/actions/setup-tools@v46
4141
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
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:v45-rust
6+
ARG RUST_IMAGE=ghcr.io/linkerd/dev:v46-rust
77

88
# Use an arbitrary ~recent edge release image to get the proxy
99
# identity-initializing and linkerd-await wrappers.

0 commit comments

Comments
 (0)