aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/go.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index a42a635..f3d43da 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -17,10 +17,18 @@ jobs:
uses: actions/cache@v4
with:
path: |
- /home/linuxbrew/.linuxbrew/
- key: ${{ runner.os }}-homebrew-${{ hashFiles('Brewfile.lock.json') }}
+ /home/linuxbrew/.linuxbrew/Cellar
+ /home/linuxbrew/.linuxbrew/bin
+ /home/linuxbrew/.linuxbrew/etc
+ /home/linuxbrew/.linuxbrew/include
+ /home/linuxbrew/.linuxbrew/lib
+ /home/linuxbrew/.linuxbrew/opt
+ /home/linuxbrew/.linuxbrew/sbin
+ /home/linuxbrew/.linuxbrew/share
+ /home/linuxbrew/.linuxbrew/var
+ key: ${{ runner.os }}-homebrew-cellar-${{ hashFiles('Brewfile.lock.json') }}
restore-keys: |
- ${{ runner.os }}-homebrew-
+ ${{ runner.os }}-homebrew-cellar-
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master