File tree 12 files changed +32
-30
lines changed
12 files changed +32
-30
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " linkerd2" ,
3
- "image" : " ghcr.io/linkerd/dev:v44 " ,
3
+ "image" : " ghcr.io/linkerd/dev:v45 " ,
4
4
"extensions" : [
5
5
" DavidAnson.vscode-markdownlint" ,
6
6
" golang.go" ,
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ permissions:
12
12
13
13
jobs :
14
14
actionlint :
15
- runs-on : ubuntu-latest
15
+ runs-on : ubuntu-24.04
16
16
timeout-minutes : 10
17
17
steps :
18
18
- uses : linkerd/dev/actions/setup-tools@v45
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20
20
- run : just action-lint
21
21
22
22
devcontainer-versions :
23
- runs-on : ubuntu-latest
23
+ runs-on : ubuntu-24.04
24
24
steps :
25
25
- uses : linkerd/dev/actions/setup-tools@v45
26
26
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
pull_request :
6
6
paths :
7
+ - .github/workflows/cni-plugin-integration.yml
7
8
- Dockerfile-cni-plugin
8
9
- cni-plugin/integration/flannel/Dockerfile-tester
9
10
- cni-plugin/integration/run.sh
18
19
cni : [flannel, calico, cilium]
19
20
iptables-mode : [legacy, nft]
20
21
timeout-minutes : 15
21
- runs-on : ubuntu-latest
22
+ runs-on : ubuntu-24.04
22
23
steps :
23
24
- uses : linkerd/dev/actions/setup-tools@v45
24
25
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -29,17 +30,18 @@ jobs:
29
30
ordering-test :
30
31
continue-on-error : true
31
32
timeout-minutes : 15
32
- runs-on : ubuntu-latest
33
+ runs-on : ubuntu-24.04
33
34
steps :
34
35
- uses : linkerd/dev/actions/setup-tools@v45
35
36
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
36
37
- name : Run CNI ordering tests
37
38
run : just cni-plugin-test-ordering
38
39
repair-controller :
39
40
timeout-minutes : 15
40
- runs-on : ubuntu-latest
41
+ runs-on : ubuntu-24.04
41
42
steps :
42
43
- uses : linkerd/dev/actions/setup-tools@v45
44
+ - uses : linkerd/dev/actions/setup-rust@v45
43
45
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
44
46
- name : Run repair-controller tests
45
47
run : just cni-repair-controller-integration
Original file line number Diff line number Diff line change @@ -13,24 +13,24 @@ permissions:
13
13
14
14
jobs :
15
15
lint :
16
- runs-on : ubuntu-latest
17
- container : ghcr.io/linkerd/dev:v44 -go
16
+ runs-on : ubuntu-24.04
17
+ container : ghcr.io/linkerd/dev:v45 -go
18
18
steps :
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20
20
- run : git config --global --add safe.directory "$PWD" # actions/runner#2033
21
21
- run : just go-lint --verbose --timeout=10m
22
22
23
23
fmt :
24
- runs-on : ubuntu-latest
25
- container : ghcr.io/linkerd/dev:v44 -go
24
+ runs-on : ubuntu-24.04
25
+ container : ghcr.io/linkerd/dev:v45 -go
26
26
steps :
27
27
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
28
28
- run : git config --global --add safe.directory "$PWD" # actions/runner#2033
29
29
- run : just go-fmt-check
30
30
31
31
unit-test :
32
- runs-on : ubuntu-latest
33
- container : ghcr.io/linkerd/dev:v44 -go
32
+ runs-on : ubuntu-24.04
33
+ container : ghcr.io/linkerd/dev:v45 -go
34
34
steps :
35
35
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
36
36
- run : git config --global --add safe.directory "$PWD" # actions/runner#2033
Original file line number Diff line number Diff line change 13
13
jobs :
14
14
proxy-init-integration :
15
15
timeout-minutes : 15
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-24.04
17
17
steps :
18
18
- uses : linkerd/dev/actions/setup-tools@v45
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Original file line number Diff line number Diff line change 12
12
jobs :
13
13
md-lint :
14
14
timeout-minutes : 5
15
- runs-on : ubuntu-latest
15
+ runs-on : ubuntu-24.04
16
16
steps :
17
17
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
18
18
- uses : DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ permissions:
13
13
jobs :
14
14
meta :
15
15
timeout-minutes : 3
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-24.04
17
17
steps :
18
18
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
19
19
- id : meta
27
27
28
28
docker-publish :
29
29
needs : meta
30
- runs-on : ubuntu-latest
30
+ runs-on : ubuntu-24.04
31
31
timeout-minutes : 25
32
32
permissions :
33
33
id-token : write # needed for signing the images with GitHub OIDC token
77
77
timeout-minutes : 5
78
78
permissions :
79
79
contents : write
80
- runs-on : ubuntu-latest
80
+ runs-on : ubuntu-24.04
81
81
steps :
82
82
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
83
83
- if : needs.meta.outputs.mode == 'release'
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ permissions:
13
13
jobs :
14
14
meta :
15
15
timeout-minutes : 3
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-24.04
17
17
steps :
18
18
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
19
19
- uses : ./.github/actions/version-mode
27
27
28
28
docker-publish :
29
29
needs : meta
30
- runs-on : ubuntu-latest
30
+ runs-on : ubuntu-24.04
31
31
timeout-minutes : 10
32
32
permissions :
33
33
id-token : write # needed for signing the images with GitHub OIDC token
77
77
timeout-minutes : 5
78
78
permissions :
79
79
contents : write
80
- runs-on : ubuntu-latest
80
+ runs-on : ubuntu-24.04
81
81
steps :
82
82
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
83
83
- if : needs.meta.outputs.mode == 'release'
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ permissions:
13
13
jobs :
14
14
meta :
15
15
timeout-minutes : 15
16
- runs-on : ubuntu-latest
17
- container : ghcr.io/linkerd/dev:v44 -rust
16
+ runs-on : ubuntu-24.04
17
+ container : ghcr.io/linkerd/dev:v45 -rust
18
18
steps :
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20
20
- uses : ./.github/actions/version-mode
33
33
matrix :
34
34
arch : [amd64, arm64, arm]
35
35
timeout-minutes : 10
36
- runs-on : ubuntu-latest
37
- container : ghcr.io/linkerd/dev:v44 -rust-musl
36
+ runs-on : ubuntu-24.04
37
+ container : ghcr.io/linkerd/dev:v45 -rust-musl
38
38
steps :
39
39
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
40
40
- run : just validator arch=${{ matrix.arch }} profile=release version=${{ needs.meta.outputs.version }} package
48
48
timeout-minutes : 5
49
49
permissions :
50
50
contents : write
51
- runs-on : ubuntu-latest
51
+ runs-on : ubuntu-24.04
52
52
steps :
53
53
- uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
54
54
with :
Original file line number Diff line number Diff line change 13
13
jobs :
14
14
check :
15
15
timeout-minutes : 5
16
- runs-on : ubuntu-latest
17
- container : ghcr.io/linkerd/dev:v44 -rust
16
+ runs-on : ubuntu-24.04
17
+ container : ghcr.io/linkerd/dev:v45 -rust
18
18
steps :
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20
20
- run : just rs-fetch
25
25
26
26
audit :
27
27
timeout-minutes : 5
28
- runs-on : ubuntu-latest
28
+ runs-on : ubuntu-24.04
29
29
strategy :
30
30
matrix :
31
31
checks :
Original file line number Diff line number Diff line change 13
13
jobs :
14
14
sh-lint :
15
15
timeout-minutes : 5
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-24.04
17
17
steps :
18
18
- uses : linkerd/dev/actions/setup-tools@v45
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ ARG TARGETARCH
12
12
RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH GO111MODULE=on \
13
13
go build -o /go/bin/linkerd-cni -mod=readonly -ldflags "-s -w" -v ./cni-plugin/
14
14
15
- FROM --platform=$BUILDPLATFORM ghcr.io/linkerd/dev:v44 -rust-musl as cni-repair-controller
15
+ FROM --platform=$BUILDPLATFORM ghcr.io/linkerd/dev:v45 -rust-musl as cni-repair-controller
16
16
WORKDIR /build
17
17
COPY --link justfile justfile-rust .
18
18
COPY --link Cargo.toml Cargo.lock .
You can’t perform that action at this time.
0 commit comments