diff options
author | Valery Piashchynski <[email protected]> | 2024-08-16 15:33:57 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-16 15:33:57 +0300 |
commit | f3fb3c106db97ebbda607e98308c635e36728e58 (patch) | |
tree | fd8d32175e349d75e0f565d50410441fa066d6fe | |
parent | 239a717ed316e4aca1441a28c70072619cc5cee5 (diff) | |
parent | 7b44915e6a9cf9acd72f9148de7b766f1fc278f6 (diff) |
Merge pull request #1988 from roadrunner-server/dependabot/docker/golang-1.23-alpine
chore(deps): bump golang from 1.22-alpine to 1.23-alpine
-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)" .` |