From 0a7ea4849d6749538ae2bf2c1934277b5f167635 Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Thu, 27 Mar 2025 09:49:34 +0000 Subject: [PATCH] chore(release): 4.12.2 [skip ci] ## [4.12.2](https://gitlab.com/to-be-continuous/golang/compare/4.12.1...4.12.2) (2025-03-27) ### Bug Fixes * **ci-lint:** golangci-lint V2 no longer support --out-format arg ([d645607](https://gitlab.com/to-be-continuous/golang/commit/d645607caa016391f948362624be0311a29145fd)) * **ci-lint:** golangci-lint V2 no longer support 'goimports' as a linter, but as formatter ([2f6c020](https://gitlab.com/to-be-continuous/golang/commit/2f6c0203e9ee0bf87078522c1e4cbae77322de21)) --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- templates/gitlab-ci-golang.yml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62b62d0..b31eac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [4.12.2](https://gitlab.com/to-be-continuous/golang/compare/4.12.1...4.12.2) (2025-03-27) + + +### Bug Fixes + +* **ci-lint:** golangci-lint V2 no longer support --out-format arg ([d645607](https://gitlab.com/to-be-continuous/golang/commit/d645607caa016391f948362624be0311a29145fd)) +* **ci-lint:** golangci-lint V2 no longer support 'goimports' as a linter, but as formatter ([2f6c020](https://gitlab.com/to-be-continuous/golang/commit/2f6c0203e9ee0bf87078522c1e4cbae77322de21)) + ## [4.12.1](https://gitlab.com/to-be-continuous/golang/compare/4.12.0...4.12.1) (2025-01-31) diff --git a/README.md b/README.md index 7a5f323..d665511 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add the following to your `.gitlab-ci.yml`: ```yaml include: # 1: include the component - - component: $CI_SERVER_FQDN/to-be-continuous/golang/gitlab-ci-golang@4.12.1 + - component: $CI_SERVER_FQDN/to-be-continuous/golang/gitlab-ci-golang@4.12.2 # 2: set/override component inputs inputs: image: "registry.hub.docker.com/library/golang:buster" # ⚠ this is only an example @@ -28,7 +28,7 @@ Add the following to your `.gitlab-ci.yml`: include: # 1: include the template - project: 'to-be-continuous/golang' - ref: '4.12.1' + ref: '4.12.2' file: '/templates/gitlab-ci-golang.yml' variables: diff --git a/templates/gitlab-ci-golang.yml b/templates/gitlab-ci-golang.yml index 4896e5a..d4788e9 100644 --- a/templates/gitlab-ci-golang.yml +++ b/templates/gitlab-ci-golang.yml @@ -605,7 +605,7 @@ stages: image: $GO_IMAGE services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "golang", "4.12.1"] + command: ["--service", "golang", "4.12.2"] variables: # The directory where 'go install' will install a command. GOBIN: "$CI_PROJECT_DIR/$GO_PROJECT_DIR/bin" -- GitLab