From eb0ecc00dff3211e6735d2306bcdf975f54268da Mon Sep 17 00:00:00 2001 From: Kishen Viswanathan Date: Fri, 20 Mar 2026 19:36:59 +0530 Subject: [PATCH] Use go1.25 and update workflows to latest versions --- .github/workflows/go.yaml | 7 ++++--- go.mod | 4 +--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 8fba2f4..1586762 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -11,12 +11,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v6 with: - go-version: 1.21 + go-version-file: 'go.mod' + - run: go version - name: Build run: go build -v ./... diff --git a/go.mod b/go.mod index 3dfe81a..8237d46 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,3 @@ module github.com/ppc64le-cloud/powervs-utils -go 1.21 - -toolchain go1.21.4 +go 1.25.8