diff options
-rw-r--r-- | .github/workflows/tests.yml | 2 | ||||
-rw-r--r-- | Dockerfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fceb94d3..faecd319 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: - name: Run linter uses: golangci/[email protected] with: - version: v1.58 # without patch version + version: v1.60 # without patch version only-new-issues: false # show only new issues if it's a pull request args: -v --build-tags=race --timeout=10m @@ -1,5 +1,5 @@ # Image page: <https://hub.docker.com/_/golang> -FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.22-alpine as builder +FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.23-alpine as builder # app version and build date must be passed during image building (version without any prefix). # e.g.: `docker build --build-arg "APP_VERSION=1.2.3" --build-arg "BUILD_TIME=$(date +%FT%T%z)" .` |