Update things.
Build container / BuildImage (push) Successful in 3m21s

This commit is contained in:
2026-05-27 01:39:32 +05:00
parent 30bac9d13a
commit c1922c2087
7 changed files with 14 additions and 14 deletions
+7 -7
View File
@@ -10,15 +10,15 @@ Debian 13 (slim) is used as base image.
| Binary | Version | Project | Repo |
| ----------------- | ------- | --------------- | ------------------------------------------------------------ |
| `go` | 1.25.4 | Go | |
| `golangci-lint` | 2.6.1 | golangci-lint | [External link](https://github.com/golangci/golangci-lint) |
| `gofumpt` | 0.9.2 | gofumpt | [External link](https://github.com/mvdan/gofumpt) |
| `go` | 1.26.3 | Go | |
| `golangci-lint` | 2.12.2 | golangci-lint | [External link](https://github.com/golangci/golangci-lint) |
| `gofumpt` | 0.10.0 | gofumpt | [External link](https://github.com/mvdan/gofumpt) |
| `mockery` | 1.1.2 | mockery | [External link](https://github.com/vektra/mockery) |
| `mockery_v2` | 2.53.4 | mockery | [External link](https://github.com/vektra/mockery) |
| `mockery_v3` | 3.5.5 | mockery | [External link](https://github.com/vektra/mockery) |
| `task` | 3.45.5 | taskfile | [External link](https://github.com/go-task/task) |
| `mockery_v2` | 2.53.6 | mockery | [External link](https://github.com/vektra/mockery) |
| `mockery_v3` | 3.7.0 | mockery | [External link](https://github.com/vektra/mockery) |
| `task` | 3.51.1 | taskfile | [External link](https://github.com/go-task/task) |
| `go-junit-report` | 2.1.0 | go-junit-report | [External link](https://github.com/jstemmer/go-junit-report) |
| `delve` | 1.25.2 | delve | [External link](https://github.com/go-delve/delve) |
| `delve` | 1.26.3 | delve | [External link](https://github.com/go-delve/delve) |
## Multiarch support
+1 -1
View File
@@ -1,6 +1,6 @@
#!/bin/bash
dlv_version=1.25.2
dlv_version=1.26.3
set -xe
+1 -1
View File
@@ -1,6 +1,6 @@
#!/bin/bash
gofumpt_version="0.9.2"
gofumpt_version="0.10.0"
set -xe
+1 -1
View File
@@ -6,7 +6,7 @@
set -xe
go_version=1.25.4
go_version=1.26.3
# shellcheck disable=SC2086,SC2046,SC2164
cd $(dirname ${BASH_SOURCE[0]})
+1 -1
View File
@@ -4,7 +4,7 @@
# Line above disables shellcheck linters:
# * SC2154 - variable referenced but not assigned (false positive, assigned when sourced arch.sh).
golangci_lint_version=2.6.1
golangci_lint_version=2.12.2
# shellcheck disable=SC2086,SC2046,SC2164
cd "$(dirname ${BASH_SOURCE[0]})"
+2 -2
View File
@@ -1,8 +1,8 @@
#!/bin/bash
mockery_version=v1.1.2
mockery_v2_version=2.53.4
mockery_v3_version=3.5.5
mockery_v2_version=2.53.6
mockery_v3_version=3.7.0
base_arch=$(uname -m)
arch=$( [ "$base_arch" = "aarch64" ] && echo "arm64" || echo "x86_64" )
+1 -1
View File
@@ -4,7 +4,7 @@
# Line above disables shellcheck linters:
# * SC2154 - variable referenced but not assigned (false positive, assigned when sourced arch.sh).
taskfile_version=3.45.5
taskfile_version=3.51.1
# shellcheck disable=SC2086,SC2046,SC2164
cd "$(dirname ${BASH_SOURCE[0]})"