diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8934810..d906fd8 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,25 +11,14 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: "1.20" - - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-go- - - - uses: actions/cache@v2 - with: - path: ./testbin - key: ${{ runner.os }}-testbin - - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ./bin key: ${{ runner.os }}-bin diff --git a/Makefile b/Makefile index 1a5fd86..8d7dd9c 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ GOBINDATA ?= $(LOCALBIN)/go-bindata ## Tool Versions CONTROLLER_TOOLS_VERSION ?= v0.14.0 GINKGO_VERSION ?= v2.14.0 -ENVTEST_VERSION ?= latest +ENVTEST_VERSION ?= release-0.17 .PHONY: controller-gen controller-gen: $(CONTROLLER_GEN) ## Download controller-gen locally if necessary.