ci: update GitHub workflows to use Go 1.24.5
Update Go version references in GitHub workflow cache configurations to
match the Go version specified in go.mod files across the repository.
I'm unclear whether putting the go version in here is necessary,
but not rocking that boat right now.
Co-Authored-By: sketch <hello@sketch.dev>
Change-ID: sf306dbc03d8b2709k
diff --git a/.github/workflows/go_test.yml b/.github/workflows/go_test.yml
index 2074f5e..3968cf2 100644
--- a/.github/workflows/go_test.yml
+++ b/.github/workflows/go_test.yml
@@ -30,14 +30,14 @@
go-version-file: "${{ inputs.working-directory || '.'}}/go.mod"
cache: true
- - name: Cache Go 1.24.4
+ - name: Cache Go 1.24.5
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
- key: ${{ runner.os }}-go1.24.4-${{ hashFiles('**/go.sum') }}
+ key: ${{ runner.os }}-go1.24.5-${{ hashFiles('**/go.sum') }}
restore-keys: |
- ${{ runner.os }}-go1.24.4-
+ ${{ runner.os }}-go1.24.5-
- name: Optimize APT
working-directory: ${{ inputs.working-directory || '.'}}