Update software to latest versions.
This commit is contained in:
parent
d830676408
commit
ea9a6db5b4
12
README.md
12
README.md
@ -8,13 +8,13 @@ Debian 12 (slim) is used as base image.
|
||||
|
||||
| Binary | Version | Project | Repo |
|
||||
| ----------------- | ------- | --------------- | ------------------------------------------------------------- |
|
||||
| `go` | 1.22.5 | Go | |
|
||||
| `golangci-lint` | 1.59.1 | golangci-lint | [External link](https://github.com/golangci/golangci-lint) |
|
||||
| `gofumpt` | 0.6.0 | gofumpt | [External link](https://github.com/mvdan/gofumpt) |
|
||||
| `mockery_v2` | 2.43.2 | mockery | [External link](https://github.com/vektra/mockery) |
|
||||
| `task` | 3.38.0 | taskfile | [External link](https://github.com/go-task/task) |
|
||||
| `go` | 1.23.1 | Go | |
|
||||
| `golangci-lint` | 1.61.0 | golangci-lint | [External link](https://github.com/golangci/golangci-lint) |
|
||||
| `gofumpt` | 0.7.0 | gofumpt | [External link](https://github.com/mvdan/gofumpt) |
|
||||
| `mockery_v2` | 2.46.0 | mockery | [External link](https://github.com/vektra/mockery) |
|
||||
| `task` | 3.39.2 | 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.22.1 | delve | [External link](https://github.com/go-delve/delve) |
|
||||
| `delve` | 1.23.0 | delve | [External link](https://github.com/go-delve/delve) |
|
||||
|
||||
## Multiarch support
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
dlv_version=1.22.1
|
||||
dlv_version=1.23.0
|
||||
|
||||
set -xe
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
gofumpt_version="0.6.0"
|
||||
gofumpt_version="0.7.0"
|
||||
|
||||
set -xe
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
set -xe
|
||||
|
||||
go_version=1.22.5
|
||||
go_version=1.23.1
|
||||
|
||||
# shellcheck disable=SC2086,SC2046,SC2164
|
||||
cd $(dirname ${BASH_SOURCE[0]})
|
||||
|
@ -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=1.59.1
|
||||
golangci_lint_version=1.61.0
|
||||
|
||||
# shellcheck disable=SC2086,SC2046,SC2164
|
||||
cd "$(dirname ${BASH_SOURCE[0]})"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
mockery_v2_version=2.43.2
|
||||
mockery_v2_version=2.46.0
|
||||
|
||||
cd /tmp || exit 1
|
||||
|
||||
|
@ -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.38.0
|
||||
taskfile_version=3.39.2
|
||||
|
||||
# shellcheck disable=SC2086,SC2046,SC2164
|
||||
cd "$(dirname ${BASH_SOURCE[0]})"
|
||||
|
Loading…
Reference in New Issue
Block a user