Skip to content

Commit 11d458e

Browse files
authored
Fix CVE (#27)
Signed-off-by: v.oleynikov <[email protected]>
1 parent 794167e commit 11d458e

File tree

10 files changed

+39
-15
lines changed

10 files changed

+39
-15
lines changed

.github/workflows/build_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
GOPROXY: ${{ secrets.GOPROXY }}
1111
SOURCE_REPO: ${{ secrets.SOURCE_REPO }}
1212
SOURCE_REPO_SSH_KEY: ${{ secrets.SOURCE_REPO_SSH_KEY }}
13-
BASE_IMAGES_VERSION: "v0.5.25"
13+
BASE_IMAGES_VERSION: "v0.5.32"
1414

1515
on:
1616
#pull_request:

.github/workflows/build_prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
GOPROXY: ${{ secrets.GOPROXY }}
1212
SOURCE_REPO: ${{ secrets.SOURCE_REPO }}
1313
SOURCE_REPO_SSH_KEY: ${{ secrets.SOURCE_REPO_SSH_KEY }}
14-
BASE_IMAGES_VERSION: "v0.5.25"
14+
BASE_IMAGES_VERSION: "v0.5.32"
1515

1616
on:
1717
push:

CHANGELOG/v0.1.7.ru.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Изменения:
2+
- Обновлена версия Go до 1.24.8
3+
- Обновлена lib-helm до deckhouse_lib_helm-1.63.6

CHANGELOG/v0.1.7.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Changes:
2+
- Updated Go version to 1.24.8
3+
- Updated lib-helm to deckhouse_lib_helm-1.63.6
-27.2 KB
Binary file not shown.
27.4 KB
Binary file not shown.

hooks/go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/deckhouse/snapshot-controller/hooks/go
22

3-
go 1.24.6
3+
go 1.24.8
44

55
require github.com/deckhouse/module-sdk v0.2.0
66

images/webhooks/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/deckhouse/snapshot-controller/images/webhooks
22

3-
go 1.24.6
3+
go 1.24.8
44

55
require (
66
github.com/deckhouse/sds-common-lib v0.5.0

release.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

werf_cleanup.yaml

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
1-
project: snapshot-controller
21
configVersion: 1
2+
project: snapshot-controller
33
cleanup:
44
keepPolicies:
5-
- references:
6-
branch: /.*/
7-
limit:
8-
in: 168h # keep dev images build during last week which not main|pre-alpha
9-
- references:
10-
branch: /main|pre-alpha/
11-
imagesPerReference:
12-
last: 5 # keep 5 images for branches main|pre-alpha
5+
- references:
6+
branch: /.*/
7+
limit:
8+
in: 168h
9+
- references:
10+
branch: /release-[0-9]+.*/
11+
limit:
12+
last: 3
13+
imagesPerReference:
14+
last: 1
15+
- references:
16+
tag: /^v([0-9]\d*)\.([0-9]\d*)\.([0-9]\d*)(-.*)?/
17+
limit:
18+
last: 3
19+
imagesPerReference:
20+
last: 1
21+
- references:
22+
tag: /.*/
23+
limit:
24+
last: 3
25+
imagesPerReference:
26+
last: 1
27+
- references:
28+
branch: /master|main/
29+
limit:
30+
last: 1
31+
imagesPerReference:
32+
last: 1

0 commit comments

Comments
 (0)