Skip to content

Commit 17b2692

Browse files
authored
build(deps): bump linkerd/dev from v43 to v44 (#13428)
* docker.io/library/golang from 1.22 to 1.23 * gotestsum from 0.4.2 to 1.12.0 * protoc-gen-go from 1.28.1 to 1.35.2 * protoc-gen-go-grpc from 1.2 to 1.5.1 * docker.io/library/rust from 1.76.0 to 1.83.0 * cargo-deny from 0.14.11 to 0.16.3 * cargo-nextest from 0.9.67 to 0.9.85 * cargo-tarpaulin from 0.27.3 to 0.31.3 * just from 1.24.0 to 1.37.0 * yq from 4.33.3 to 4.44.5 * markdownlint-cli2 from 0.10.0 to 0.15.0 * shellcheck from 0.9.0 to 0.10.0 * actionlint from 1.6.26 to 1.7.4 * protoc from 3.20.3 to 29.0 * step from 0.25.2 to 0.28.2 * kubectl from 1.29.2 to 1.31.3 * k3d from 5.6.0 to 5.7.5 * k3s image shas * helm from 3.14.1 to 3.16.3 * helm-docs from 1.12.0 to 1.14.2
1 parent 683ce40 commit 17b2692

File tree

47 files changed

+487
-1449
lines changed

Some content is hidden

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

47 files changed

+487
-1449
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkerd2",
3-
"image": "ghcr.io/linkerd/dev:v43",
3+
"image": "ghcr.io/linkerd/dev:v44",
44
// "dockerFile": "./Dockerfile",
55
// "context": "..",
66
"features": {

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
timeout-minutes: 10
1616
steps:
17-
- uses: linkerd/dev/actions/setup-tools@v43
17+
- uses: linkerd/dev/actions/setup-tools@v44
1818
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1919
- run: just-dev lint-actions
2020

2121
devcontainer-versions:
2222
runs-on: ubuntu-22.04
2323
steps:
24-
- uses: linkerd/dev/actions/setup-tools@v43
24+
- uses: linkerd/dev/actions/setup-tools@v44
2525
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2626
- run: just-dev check-action-images

.github/workflows/codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 30
1515
runs-on: ubuntu-22.04
1616
container:
17-
image: golang:1.22
17+
image: golang:1.23
1818
steps:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2020
- run: go install gotest.tools/[email protected]
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-22.04
5252
timeout-minutes: 15
5353
container:
54-
image: docker://rust:1.76.0
54+
image: docker://rust:1.83.0
5555
options: --security-opt seccomp=unconfined
5656
steps:
5757
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
steps:
3939
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
4040
with:
41-
go-version: "1.22"
41+
go-version: "1.23"
4242
- name: Checkout
4343
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4444

.github/workflows/devcontainer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
rust-version:
1717
runs-on: ubuntu-22.04
18-
container: ghcr.io/linkerd/dev:v43-rust
18+
container: ghcr.io/linkerd/dev:v44-rust
1919
steps:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2121
- shell: bash
@@ -39,6 +39,6 @@ jobs:
3939
devcontainer-image:
4040
runs-on: ubuntu-22.04
4141
steps:
42-
- uses: linkerd/dev/actions/setup-tools@v43
42+
- uses: linkerd/dev/actions/setup-tools@v44
4343
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4444
- run: just-dev pull-dev-image

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: needs.meta.outputs.changed == 'true'
3030
timeout-minutes: 10
3131
runs-on: ubuntu-22.04
32-
container: ghcr.io/linkerd/dev:v43-go
32+
container: ghcr.io/linkerd/dev:v44-go
3333
steps:
3434
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3535
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
@@ -40,7 +40,7 @@ jobs:
4040
if: needs.meta.outputs.changed == 'true'
4141
timeout-minutes: 10
4242
runs-on: ubuntu-22.04
43-
container: ghcr.io/linkerd/dev:v43-go
43+
container: ghcr.io/linkerd/dev:v44-go
4444
steps:
4545
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4646
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
@@ -51,7 +51,7 @@ jobs:
5151
if: needs.meta.outputs.changed == 'true'
5252
timeout-minutes: 10
5353
runs-on: ubuntu-22.04
54-
container: ghcr.io/linkerd/dev:v43-go
54+
container: ghcr.io/linkerd/dev:v44-go
5555
steps:
5656
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
5757
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033

.github/workflows/helm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-22.04
1717
timeout-minutes: 5
1818
steps:
19-
- uses: linkerd/dev/actions/setup-tools@v43
19+
- uses: linkerd/dev/actions/setup-tools@v44
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2121
- run: helm-docs
2222
- run: git diff --exit-code -- **/charts/**/README.md

.github/workflows/integration.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ env:
1010
CARGO_NET_RETRY: 10
1111
DOCKER_REGISTRY: ghcr.io/linkerd
1212
GH_ANNOTATION: true
13-
K3D_VERSION: v5.4.4
13+
K3D_VERSION: v5.7.5
1414
RUST_BACKTRACE: short
1515
RUSTUP_MAX_RETRIES: 10
16-
YQ_VERSION: v4.25.1
16+
YQ_VERSION: v4.44.5
1717
LINKERD2_PROXY_REPO: ${{ vars.LINKERD2_PROXY_REPO || 'linkerd/linkerd2-proxy' }}
1818
LINKERD2_PROXY_RELEASE_PREFIX: ${{ vars.LINKERD2_PROXY_RELEASE_PREFIX || 'release/' }}
1919

@@ -138,7 +138,7 @@ jobs:
138138
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
139139
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
140140
with:
141-
go-version: "1.22"
141+
go-version: "1.23"
142142
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
143143
with:
144144
pattern: image-archives-*
@@ -265,7 +265,7 @@ jobs:
265265
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
266266
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
267267
with:
268-
go-version: "1.22"
268+
go-version: "1.23"
269269
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
270270
with:
271271
pattern: image-archives-*
@@ -290,7 +290,7 @@ jobs:
290290
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
291291
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
292292
with:
293-
go-version: "1.22"
293+
go-version: "1.23"
294294
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
295295
with:
296296
pattern: image-archives-*
@@ -324,7 +324,7 @@ jobs:
324324
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
325325
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
326326
with:
327-
go-version: "1.22"
327+
go-version: "1.23"
328328
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
329329
with:
330330
pattern: image-archives-*

.github/workflows/proto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
proto-diff:
1616
timeout-minutes: 10
1717
runs-on: ubuntu-22.04
18-
container: ghcr.io/linkerd/dev:v43-go
18+
container: ghcr.io/linkerd/dev:v44-go
1919
steps:
2020
- run: apt update && apt install -y unzip
2121
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
env:
1212
GH_ANNOTATION: true
1313
DOCKER_REGISTRY: ghcr.io/linkerd
14-
K3D_VERSION: v5.4.4
14+
K3D_VERSION: v5.7.5
1515
LINKERD2_PROXY_REPO: ${{ vars.LINKERD2_PROXY_REPO }}
1616

1717
jobs:
@@ -98,7 +98,7 @@ jobs:
9898
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
9999
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
100100
with:
101-
go-version: "1.22"
101+
go-version: "1.23"
102102
- name: Download image archives
103103
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
104104
with:
@@ -130,7 +130,7 @@ jobs:
130130
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
131131
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
132132
with:
133-
go-version: "1.22"
133+
go-version: "1.23"
134134
- name: Set environment variables from scripts
135135
run: |
136136
TAG='${{ needs.tag.outputs.tag }}'

0 commit comments

Comments
 (0)