File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,29 @@ jobs:
27
27
- name : Checkout
28
28
uses : actions/checkout@v4
29
29
30
+ - name : Cache Bazel
31
+ uses : actions/cache@v4
32
+ with :
33
+ path : |
34
+ ~/.cache/bazel
35
+ ~/.cache/bazelisk
36
+ key : ${{ runner.os }}-bazel-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE') }}
37
+ restore-keys : |
38
+ ${{ runner.os }}-bazel-
39
+
30
40
- name : Setup bazel
31
41
uses : ./.github/actions/setup_bazel_nix
32
42
with :
33
43
useCache : " false"
34
44
45
+ - name : Cache Go dependencies
46
+ uses : actions/cache@v4
47
+ with :
48
+ path : ~/go/pkg/mod
49
+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
50
+ restore-keys : |
51
+ ${{ runner.os }}-go-
52
+
35
53
- name : Build Terraform Provider Binary
36
54
uses : ./.github/actions/build_tf_provider
37
55
with :
You can’t perform that action at this time.
0 commit comments