From ea9a6db5b4969d95956eaf46b472b62419470215 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Sat, 21 Sep 2024 23:59:52 +0500 Subject: [PATCH] Update software to latest versions. --- README.md | 12 ++++++------ scripts/workers/dlv.sh | 2 +- scripts/workers/gofumpt.sh | 2 +- scripts/workers/golang.sh | 2 +- scripts/workers/golangci-lint.sh | 2 +- scripts/workers/mockery.sh | 2 +- scripts/workers/taskfile.sh | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index a163dae..8a191a1 100755 --- a/README.md +++ b/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 diff --git a/scripts/workers/dlv.sh b/scripts/workers/dlv.sh index a0b84c0..6e1d236 100755 --- a/scripts/workers/dlv.sh +++ b/scripts/workers/dlv.sh @@ -1,6 +1,6 @@ #!/bin/bash -dlv_version=1.22.1 +dlv_version=1.23.0 set -xe diff --git a/scripts/workers/gofumpt.sh b/scripts/workers/gofumpt.sh index e523bc2..6fd760a 100755 --- a/scripts/workers/gofumpt.sh +++ b/scripts/workers/gofumpt.sh @@ -1,6 +1,6 @@ #!/bin/bash -gofumpt_version="0.6.0" +gofumpt_version="0.7.0" set -xe diff --git a/scripts/workers/golang.sh b/scripts/workers/golang.sh index eed54fe..dfca9db 100755 --- a/scripts/workers/golang.sh +++ b/scripts/workers/golang.sh @@ -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]}) diff --git a/scripts/workers/golangci-lint.sh b/scripts/workers/golangci-lint.sh index 72c9950..f843ba9 100755 --- a/scripts/workers/golangci-lint.sh +++ b/scripts/workers/golangci-lint.sh @@ -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]})" diff --git a/scripts/workers/mockery.sh b/scripts/workers/mockery.sh index 386cb0d..c582e07 100755 --- a/scripts/workers/mockery.sh +++ b/scripts/workers/mockery.sh @@ -1,6 +1,6 @@ #!/bin/bash -mockery_v2_version=2.43.2 +mockery_v2_version=2.46.0 cd /tmp || exit 1 diff --git a/scripts/workers/taskfile.sh b/scripts/workers/taskfile.sh index 7edfb73..563578a 100755 --- a/scripts/workers/taskfile.sh +++ b/scripts/workers/taskfile.sh @@ -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]})"