Skip to content

Commit 3a4dddc

Browse files
committed
build(deps): update linkerd/dev to v47
1 parent 10643b9 commit 3a4dddc

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
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": "v46",
6+
"DEV_VERSION": "v47",
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:v46-rust
26+
container: ghcr.io/linkerd/dev:v47-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:v46-rust
46+
image: docker://ghcr.io/linkerd/dev:v47-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:v46-rust
26+
container: ghcr.io/linkerd/dev:v47-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@v46
79+
- uses: linkerd/dev/actions/setup-tools@v47
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: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
88-
container: ghcr.io/linkerd/dev:v46-rust
88+
container: ghcr.io/linkerd/dev:v47-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:v46-rust
111+
container: ghcr.io/linkerd/dev:v47-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@v46
130+
- uses: linkerd/dev/actions/setup-tools@v47
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: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
144144
timeout-minutes: 40
145-
container: docker://ghcr.io/linkerd/dev:v46-rust-musl
145+
container: docker://ghcr.io/linkerd/dev:v47-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: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
1717
steps:
18-
- uses: linkerd/dev/actions/setup-tools@v46
18+
- uses: linkerd/dev/actions/setup-tools@v47
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: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
17-
container: ghcr.io/linkerd/dev:v46-rust
17+
container: ghcr.io/linkerd/dev:v47-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: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }}
3939
steps:
40-
- uses: linkerd/dev/actions/setup-tools@v46
40+
- uses: linkerd/dev/actions/setup-tools@v47
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:v46-rust
6+
ARG RUST_IMAGE=ghcr.io/linkerd/dev:v47-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)