@@ -10,15 +10,15 @@ Debian 13 (slim) is used as base image.
|
|||||||
|
|
||||||
| Binary | Version | Project | Repo |
|
| Binary | Version | Project | Repo |
|
||||||
| ----------------- | ------- | --------------- | ------------------------------------------------------------ |
|
| ----------------- | ------- | --------------- | ------------------------------------------------------------ |
|
||||||
| `go` | 1.25.4 | Go | |
|
| `go` | 1.26.3 | Go | |
|
||||||
| `golangci-lint` | 2.6.1 | golangci-lint | [External link](https://github.com/golangci/golangci-lint) |
|
| `golangci-lint` | 2.12.2 | golangci-lint | [External link](https://github.com/golangci/golangci-lint) |
|
||||||
| `gofumpt` | 0.9.2 | gofumpt | [External link](https://github.com/mvdan/gofumpt) |
|
| `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` | 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_v2` | 2.53.6 | mockery | [External link](https://github.com/vektra/mockery) |
|
||||||
| `mockery_v3` | 3.5.5 | mockery | [External link](https://github.com/vektra/mockery) |
|
| `mockery_v3` | 3.7.0 | mockery | [External link](https://github.com/vektra/mockery) |
|
||||||
| `task` | 3.45.5 | taskfile | [External link](https://github.com/go-task/task) |
|
| `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) |
|
| `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
|
## Multiarch support
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
dlv_version=1.25.2
|
dlv_version=1.26.3
|
||||||
|
|
||||||
set -xe
|
set -xe
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
gofumpt_version="0.9.2"
|
gofumpt_version="0.10.0"
|
||||||
|
|
||||||
set -xe
|
set -xe
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
set -xe
|
set -xe
|
||||||
|
|
||||||
go_version=1.25.4
|
go_version=1.26.3
|
||||||
|
|
||||||
# shellcheck disable=SC2086,SC2046,SC2164
|
# shellcheck disable=SC2086,SC2046,SC2164
|
||||||
cd $(dirname ${BASH_SOURCE[0]})
|
cd $(dirname ${BASH_SOURCE[0]})
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# Line above disables shellcheck linters:
|
# Line above disables shellcheck linters:
|
||||||
# * SC2154 - variable referenced but not assigned (false positive, assigned when sourced arch.sh).
|
# * 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
|
# shellcheck disable=SC2086,SC2046,SC2164
|
||||||
cd "$(dirname ${BASH_SOURCE[0]})"
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
mockery_version=v1.1.2
|
mockery_version=v1.1.2
|
||||||
mockery_v2_version=2.53.4
|
mockery_v2_version=2.53.6
|
||||||
mockery_v3_version=3.5.5
|
mockery_v3_version=3.7.0
|
||||||
|
|
||||||
base_arch=$(uname -m)
|
base_arch=$(uname -m)
|
||||||
arch=$( [ "$base_arch" = "aarch64" ] && echo "arm64" || echo "x86_64" )
|
arch=$( [ "$base_arch" = "aarch64" ] && echo "arm64" || echo "x86_64" )
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# Line above disables shellcheck linters:
|
# Line above disables shellcheck linters:
|
||||||
# * SC2154 - variable referenced but not assigned (false positive, assigned when sourced arch.sh).
|
# * 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
|
# shellcheck disable=SC2086,SC2046,SC2164
|
||||||
cd "$(dirname ${BASH_SOURCE[0]})"
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
||||||
|
|||||||
Reference in New Issue
Block a user