diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index 16b09ce55..f5289d495 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -33,16 +33,6 @@ jobs: - name: set env vars run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 - with: - path: | - ~/go/pkg - ~/.cache/go-build - ~/Library/Caches/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - name: build dev docker image run: | ./scripts/build-dev-docker.bash diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fd9b58347..9427f6b3d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -29,23 +29,6 @@ jobs: - name: set env vars run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - - name: cache go binaries - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 - id: cache-go-bin - with: - path: ~/go/bin - key: ${{ runner.os }}-${{ hashFiles('**/go.mod') }} - restore-keys: ${{ runner.os }}-go-bin - - - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 - with: - path: | - ~/go/pkg/mod - ~/.cache/go-build - ~/Library/Caches/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-go- - - run: make deps-build - name: test @@ -71,23 +54,6 @@ jobs: - name: set env vars run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - - name: cache go binaries - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 - id: cache-go-bin - with: - path: ~/go/bin - key: ${{ runner.os }}-${{ hashFiles('**/go.mod') }} - restore-keys: ${{ runner.os }}-go-bin - - - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 - with: - path: | - ~/go/pkg/mod - ~/.cache/go-build - ~/Library/Caches/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-go- - - name: cover run: make cover @@ -126,16 +92,6 @@ jobs: - name: set env vars run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 - with: - path: | - ~/go/pkg - ~/.cache/go-build - ~/Library/Caches/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - name: build dev docker image run: | ./scripts/build-dev-docker.bash @@ -169,16 +125,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 - with: - path: | - ~/go/pkg/mod - ~/.cache/go-build - ~/Library/Caches/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - name: build run: | make build-deps