From d51687b3c38f01b2a562f50c0a5f0f6174171146 Mon Sep 17 00:00:00 2001 From: Andreas Gerstmayr Date: Mon, 4 Mar 2024 14:23:36 +0100 Subject: [PATCH] try to fix scorecard tests (again) (#824) Signed-off-by: Andreas Gerstmayr --- .github/workflows/scorecard.yaml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/scorecard.yaml b/.github/workflows/scorecard.yaml index d1e8d84fc..7197aaa7d 100644 --- a/.github/workflows/scorecard.yaml +++ b/.github/workflows/scorecard.yaml @@ -38,16 +38,7 @@ jobs: env: KUBE_VERSION: ${{ matrix.kube-version }} run: | - # fix for https://bugs.launchpad.net/ubuntu/+source/libpod/+bug/2024394 - wget http://archive.ubuntu.com/ubuntu/pool/universe/g/golang-github-containernetworking-plugins/containernetworking-plugins_1.1.1+ds1-3_amd64.deb - sudo dpkg -i containernetworking-plugins_1.1.1+ds1-3_amd64.deb - - # attempt to fix https://github.com/grafana/tempo-operator/issues/380 by using podman instead of docker - sudo KIND_EXPERIMENTAL_PROVIDER=podman kind create cluster --config kind-$KUBE_VERSION.yaml --wait 5m - - mkdir ~/.kube - sudo cp /root/.kube/config ~/.kube/config - sudo chown $(id -u):$(id -g) ~/.kube/config + make start-kind - name: "run community scorecard tests" run: for i in {1..5}; do make scorecard-tests && break || sleep 10; done