From 80d743511a026a338f0cab992defcc2bb8338037 Mon Sep 17 00:00:00 2001 From: Eadred Date: Fri, 3 Apr 2026 11:34:48 +0100 Subject: [PATCH] chore: update go version to 1.25.8 (#2514) Applies various security patches and bug fixes: https://go.dev/doc/devel/release#go1.25.minor Also: * Update CONTRIBUTING to indicate to use -s flag when signing commits Signed-off-by: eadred --- CONTRIBUTING.md | 5 ++++- go.mod | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8921741..79793a95 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,7 +19,7 @@ $ git checkout -b your-shiny-new-feature origin/main ... -$ git commit -m 'feat: do whatever for whatever purpose +$ git commit -s -m 'feat: do whatever for whatever purpose This adds ... by: @@ -30,6 +30,9 @@ This adds ... by: Resolves #ISSUE_NUMBER ' +Remember to include a `Signed-off-by: Author Name ` +line in the commit message, either manually or using the `-s` flag. + $ hub fork $ git push YOUR_GITHUB_USER your-shiny-new-feature $ hub pull-request diff --git a/go.mod b/go.mod index a0f54812..d15bbf42 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/helmfile/helmfile -go 1.25.4 +go 1.25.8 require ( dario.cat/mergo v1.0.2