From 3b4c43a3f7e94b4a3cae0e1e73200d348666cfc5 Mon Sep 17 00:00:00 2001 From: Casey Buto Date: Thu, 30 Apr 2026 12:18:36 -0400 Subject: [PATCH] Bump Go to 1.25.9 Signed-off-by: Casey Buto --- .github/workflows/build-pr.yml | 4 ++-- .github/workflows/build.yml | 4 ++-- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index e94d0526..305be000 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -12,9 +12,9 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: setup go environment - uses: actions/setup-go@v2 + uses: actions/setup-go@v6 with: - go-version: '1.23' + go-version-file: go.mod - name: download dependencies run: make bootstrap - name: run unit tests diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d8b1500f..973cc519 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,9 +22,9 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: setup go environment - uses: actions/setup-go@v2 + uses: actions/setup-go@v6 with: - go-version: '1.23' + go-version-file: go.mod - name: download dependencies run: make bootstrap - name: run unit tests diff --git a/go.mod b/go.mod index 6378ccbd..8844e49a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module helm.sh/chartmuseum -go 1.25.8 +go 1.25.9 require ( github.com/alicebob/miniredis v2.5.0+incompatible