Skip to content

Commit 8d26211

Browse files
committed
fix
Signed-off-by: Charles-Edouard Brétéché <[email protected]>
1 parent d0e552d commit 8d26211

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
path: bin
5252
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
5353
- name: Install chainsaw
54-
uses: kyverno/action-install-chainsaw@07b6c986572f2abaf6647c85d37cbecfddc4a6ab # v0.1.3
54+
uses: kyverno/[email protected].4
5555
- name: Install tools
5656
run: make install-tools
5757
- name: Prepare e2e tests

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ generate: controller-gen
198198
# end-to-tests
199199
.PHONY: e2e
200200
e2e: chainsaw
201-
chainsaw test --test-dir ./tests/e2e
201+
$(CHAINSAW) test --test-dir ./tests/e2e
202202

203203
# end-to-end-test for testing autoscale
204204
.PHONY: e2e-autoscale
@@ -248,10 +248,10 @@ e2e-upgrade: undeploy chainsaw
248248
$(CHAINSAW) test --test-dir ./tests/e2e-upgrade
249249

250250
.PHONY: prepare-e2e
251-
prepare-e2e: set-image-controller add-image-targetallocator add-image-opampbridge container container-target-allocator container-operator-opamp-bridge start-kind cert-manager install-metrics-server install-targetallocator-prometheus-crds load-image-all deploy
251+
prepare-e2e: chainsaw set-image-controller add-image-targetallocator add-image-opampbridge container container-target-allocator container-operator-opamp-bridge start-kind cert-manager install-metrics-server install-targetallocator-prometheus-crds load-image-all deploy
252252

253253
.PHONY: prepare-e2e-with-featuregates
254-
prepare-e2e-with-featuregates: enable-operator-featuregates prepare-e2e
254+
prepare-e2e-with-featuregates: chainsaw enable-operator-featuregates prepare-e2e
255255

256256
.PHONY: scorecard-tests
257257
scorecard-tests: operator-sdk
@@ -371,7 +371,7 @@ KIND_VERSION ?= v0.20.0
371371
ifneq ($(shell which chainsaw),)
372372
CHAINSAW ?= $(shell which chainsaw)
373373
else
374-
CHAINSAW ?= $(LOCALBIN)/bin/chainsaw
374+
CHAINSAW ?= $(LOCALBIN)/chainsaw
375375
endif
376376

377377
.PHONY: install-tools
@@ -409,7 +409,7 @@ chainsaw: ## Find or download chainsaw
409409
ifeq (, $(shell which chainsaw))
410410
@{ \
411411
set -e ;\
412-
go install github.com/kyverno/[email protected].3 ;\
412+
go install github.com/kyverno/[email protected].4 ;\
413413
}
414414
CHAINSAW ?= $(GOBIN)/chainsaw
415415
else

0 commit comments

Comments
 (0)