From 930f2ca206d3bd296e5d1fd10b61167886db1506 Mon Sep 17 00:00:00 2001 From: Manuel Vogel <8409778+mavogel@users.noreply.github.com> Date: Wed, 26 Mar 2025 16:20:39 +0100 Subject: [PATCH] chore: bump go to v1.24 Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- .github/workflows/publish.yml | 2 +- .github/workflows/release.yml | 2 +- README.md | 2 +- go.mod | 4 +--- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bef41ad..8163ea0a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: - "README.md" env: - GO_VERSION: "1.19" + GO_VERSION: "1.24" GOLANGCI_VERSION: "v1.50.1" jobs: @@ -56,7 +56,7 @@ jobs: go-version: ${{ env.GO_VERSION }} - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v7 with: version: ${{ env.GOLANGCI_VERSION }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b945893c..f9386129 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,7 +6,7 @@ on: - master env: - GO_VERSION: "1.19" + GO_VERSION: "1.24" DOCKER_REGISTRY: "quay.io" jobs: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2fdfaad..8236dec5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - "*" env: - GO_VERSION: "1.19" + GO_VERSION: "1.24" DOCKER_REGISTRY: "quay.io" jobs: diff --git a/README.md b/README.md index 3e767100..f053839f 100644 --- a/README.md +++ b/README.md @@ -686,7 +686,7 @@ We always welcome your contributions :clap: ## Development -1. Use Golang version `>= 1.19` +1. Use Golang version `>= 1.24` 1. Fork (https://github.com/git-chglog/git-chglog) :tada: 1. Create a feature branch :coffee: 1. Run test suite with the `$ make test` command and confirm that it passes :zap: diff --git a/go.mod b/go.mod index 751df961..5c832ac9 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/git-chglog/git-chglog -go 1.21 - -toolchain go1.24.1 +go 1.24.1 require ( github.com/AlecAivazis/survey/v2 v2.3.7