From f6e3ab6450345ebcdf824a0d1dcedc0a6b415b9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Thu, 22 Aug 2024 09:07:07 -0700 Subject: [PATCH] Pin vmtest-action to working version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With release 0.14 vmtest has become unusable for us. The reason being that it turns out that with the usage of the host's /tmp/ handling of temporary files broke due to deficiencies in the 9P file system [0]. Given that by now vmtest-action@master uses this very version, our CI is broken. To work around the issue until a permanent fix is found, pin vmtest-action to a usable SHA-1. [0] https://github.com/danobi/vmtest/issues/83 Signed-off-by: Daniel Müller --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 01846c61..75acb114 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -208,7 +208,7 @@ jobs: EOF chmod a+x main.sh - name: Test and gather coverage - uses: danobi/vmtest-action@master + uses: danobi/vmtest-action@f8c84191b5925c3290595743fc46eaaafd827bf3 with: kernel: bzImage command: sh -c 'cd ${{ github.workspace }} && ./main.sh'