Skip to content

Commit 7d4aa80

Browse files
committed
chore(ci): align dlv debug images and workflows with go 1.25.10 (#2344)
Update dlv Dockerfiles to use the Go 1.25.10 builder image required by virtualization-artifact/go.mod and pin its digest for reproducible debug builds. Align GitHub workflows with the same Go version so CI uses a consistent toolchain. Signed-off-by: Dmitry Lopatin <dmitry.lopatin@flant.com>
1 parent 5650dfd commit 7d4aa80

8 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/dev_module_build-and-registration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
MODULES_MODULE_TAG: ${{ github.event.inputs.tag }}
2626
SOURCE_REPO: "${{secrets.SOURCE_REPO}}"
2727
SOURCE_REPO_GIT: "${{secrets.SOURCE_REPO_GIT}}"
28-
GO_VERSION: "1.25.9"
28+
GO_VERSION: "1.25.10
2929
MODULE_EDITION: "EE"
3030

3131
on:

.github/workflows/dev_module_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ env:
2121
MODULES_MODULE_SOURCE: ${{ vars.DEV_MODULE_SOURCE }}
2222
MODULES_REGISTRY_LOGIN: ${{ vars.DEV_MODULES_REGISTRY_LOGIN }}
2323
MODULES_REGISTRY_PASSWORD: ${{ secrets.DEV_MODULES_REGISTRY_PASSWORD }}
24-
GO_VERSION: "1.25.9"
25-
GOLANGCI_LINT_VERSION: "2.11.1"
2624
SOURCE_REPO: "${{secrets.SOURCE_REPO}}"
27-
SOURCE_REPO_GIT: "${{secrets.SOURCE_REPO_GIT}}"
25+
DECKHOUSE_PRIVATE_REPO: "${{secrets.DECKHOUSE_PRIVATE_REPO}}"
26+
GO_VERSION: "1.25.10"
27+
GOLANGCI_LINT_VERSION: "2.11.1"
2828
TRIVY_DISABLE_VEX_NOTICE: "true"
2929

3030
on:

.github/workflows/dev_validation.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
name: Validations
1616

1717
env:
18-
GO_VERSION: "1.25.9"
18+
GO_VERSION: "1.25.10"
1919
on:
2020
pull_request:
2121
types: [opened, synchronize, labeled, unlabeled]
@@ -137,9 +137,9 @@ jobs:
137137
matrix:
138138
# Define two groups of components with their respective Go versions
139139
components:
140-
- { component: virtualization-artifact, go-version: "1.25.9" }
141-
- { component: vm-route-forge, go-version: "1.25.9" }
142-
- { component: api, go-version: "1.25.9" }
140+
- { component: virtualization-artifact, go-version: "1.25.10" }
141+
- { component: vm-route-forge, go-version: "1.25.10" }
142+
- { component: api, go-version: "1.25.10" }
143143

144144
steps:
145145
- name: Set skip flag

.github/workflows/e2e-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ jobs:
338338
virtualization_tag: main
339339
deckhouse_channel: alpha
340340
default_user: cloud
341-
go_version: "1.25.9"
341+
go_version: "1.25.10"
342342
e2e_timeout: "3.5h"
343343
date_start: ${{ needs.set-vars.outputs.date_start }}
344344
randuuid4c: ${{ needs.set-vars.outputs.randuuid4c }}

.github/workflows/release_module_release-channels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
needs: print-vars
118118
if: ${{ !inputs.check_only && (inputs.ce || inputs.ee) }}
119119
env:
120-
GO_VERSION: "1.25.9"
120+
GO_VERSION: "1.25.10"
121121
input_channel: ${{ github.event.inputs.channel }}
122122
input_version: ${{ github.event.inputs.tag }}
123123
steps:
@@ -411,7 +411,7 @@ jobs:
411411
name: Check version on release channel
412412
runs-on: ubuntu-latest
413413
env:
414-
GO_VERSION: "1.25.9"
414+
GO_VERSION: "1.25.10"
415415
input_channel: ${{ github.event.inputs.channel }}
416416
input_version: ${{ github.event.inputs.tag }}
417417
needs:

images/virtualization-artifact/hack/dlv-apiserver.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.9-bookworm@sha256:29e59af995c51a5bf63d072eca973b918e0e7af4db0e4667aa73f1b8da1a6d8c AS builder
1+
FROM golang:1.25.10-bookworm@sha256:e3a54b77385b4f8a31c1db4d12429ffb3718ea76865731a787c497755d409547 AS builder
22
ARG TARGETOS
33
ARG TARGETARCH
44

images/virtualization-artifact/hack/dlv-audit.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.9-bookworm@sha256:29e59af995c51a5bf63d072eca973b918e0e7af4db0e4667aa73f1b8da1a6d8c AS builder
1+
FROM golang:1.25.10-bookworm@sha256:e3a54b77385b4f8a31c1db4d12429ffb3718ea76865731a787c497755d409547 AS builder
22
ARG TARGETOS
33
ARG TARGETARCH
44

images/virtualization-artifact/hack/dlv-controller.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.9-bookworm@sha256:29e59af995c51a5bf63d072eca973b918e0e7af4db0e4667aa73f1b8da1a6d8c AS builder
1+
FROM golang:1.25.10-bookworm@sha256:e3a54b77385b4f8a31c1db4d12429ffb3718ea76865731a787c497755d409547 AS builder
22
ARG TARGETOS
33
ARG TARGETARCH
44

0 commit comments

Comments
 (0)