Skip to content

Commit 87362df

Browse files
committed
hash all go.sum (including plugins) for the cache key
1 parent 2afdd9f commit 87362df

8 files changed

+8
-0
lines changed

.github/workflows/bats-hub.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
uses: actions/setup-go@v4
3838
with:
3939
go-version: ${{ matrix.go-version }}
40+
cache-dependency-path: "**/go.sum"
4041

4142
- name: "Install bats dependencies"
4243
env:

.github/workflows/bats-mysql.yml

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
uses: actions/setup-go@v4
4545
with:
4646
go-version: ${{ matrix.go-version }}
47+
cache-dependency-path: "**/go.sum"
4748

4849
- name: "Install bats dependencies"
4950
env:

.github/workflows/bats-postgres.yml

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
uses: actions/setup-go@v4
4646
with:
4747
go-version: ${{ matrix.go-version }}
48+
cache-dependency-path: "**/go.sum"
4849

4950
- name: "Install bats dependencies"
5051
env:

.github/workflows/bats-sqlite-coverage.yml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
uses: actions/setup-go@v4
3535
with:
3636
go-version: ${{ matrix.go-version }}
37+
cache-dependency-path: "**/go.sum"
3738

3839
- name: "Install bats dependencies"
3940
env:

.github/workflows/ci-windows-build-msi.yml

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
uses: actions/setup-go@v4
4141
with:
4242
go-version: ${{ matrix.go-version }}
43+
cache-dependency-path: "**/go.sum"
4344

4445
- name: Build
4546
run: make windows_installer BUILD_RE2_WASM=1

.github/workflows/go-tests-windows.yml

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
uses: actions/setup-go@v4
4040
with:
4141
go-version: ${{ matrix.go-version }}
42+
cache-dependency-path: "**/go.sum"
4243

4344
- name: Build
4445
run: |

.github/workflows/go-tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ jobs:
120120
uses: actions/setup-go@v4
121121
with:
122122
go-version: ${{ matrix.go-version }}
123+
cache-dependency-path: "**/go.sum"
123124

124125
- name: Build and run tests, static
125126
run: |

.github/workflows/release_publish-package.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
uses: actions/setup-go@v4
3131
with:
3232
go-version: ${{ matrix.go-version }}
33+
cache-dependency-path: "**/go.sum"
3334

3435
- name: Build the binaries
3536
run: |

0 commit comments

Comments
 (0)