Skip to content

Commit 965fa13

Browse files
committed
Fix caching tools
Signed-off-by: Pavol Loffay <[email protected]>
1 parent 9bda806 commit 965fa13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/continuous-integration.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ jobs:
2020

2121
- name: Set up Go
2222
uses: actions/setup-go@v5
23+
id: setup-go
2324
with:
2425
go-version: "~1.21.1"
2526

2627
- name: Cache tools
2728
uses: actions/cache@v4
2829
with:
2930
path: bin
30-
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
31+
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}-${{steps.setup-go.outputs-go-version}}
3132

3233
- name: Install tools
3334
run: make install-tools

0 commit comments

Comments
 (0)