diff options
| -rw-r--r-- | .github/workflows/go.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 49a23f5..e4f4a94 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,10 +16,6 @@ jobs: - name: Set up Homebrew uses: Homebrew/actions/setup-homebrew@master - - name: Install Brew dependencies - run: | - brew bundle - - name: Setup Homebrew cellar cache uses: actions/cache@v4 with: @@ -29,6 +25,10 @@ jobs: restore-keys: | ${{ runner.os }}-homebrew-cellar- + - name: Install Brew dependencies + run: | + brew bundle + - name: Setup Golang caches uses: actions/cache@v4 with: |
