From 8c9c153bef5e7ef69926087379a4d22cfb6ce9dc Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 14 Oct 2024 15:30:29 +0200 Subject: [PATCH] Use ubuntu 22.04 temporarly to fix the E2E (#1228) ubuntu-latest (24.04) doesn't have /etc/docker/daemon.json anymore (by default at least), making some action we use fail. This should unblock the CI until we update these actions. Signed-off-by: Vincent Demeester --- .github/workflows/reusable-e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-e2e.yaml b/.github/workflows/reusable-e2e.yaml index f14d0c4921..76a51088e6 100644 --- a/.github/workflows/reusable-e2e.yaml +++ b/.github/workflows/reusable-e2e.yaml @@ -19,7 +19,7 @@ defaults: jobs: e2e-test: name: e2e test - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 env: GOPATH: ${{ github.workspace }}