From 6dc664e75eeeabe3d4de4c5453ce003d48fd2a85 Mon Sep 17 00:00:00 2001 From: "Masih H. Derkani" Date: Wed, 6 Aug 2025 09:25:59 +0100 Subject: [PATCH] Use consistent go version across module and CI Use a consistent go minor version across go mod and CI workflow. While at it, upgrade to the latest GitHub Actions steps for Go setup and cache. --- .github/workflows/build-and-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index cf02d12..e1b1b8e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -12,19 +12,19 @@ jobs: strategy: matrix: - go-version: [1.24.1] + go-version: [1.24.5] steps: - name: Checkout code uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Cache Go modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build