From f0e185031eac4b16ba53cb01c511149590e35a60 Mon Sep 17 00:00:00 2001 From: zach Date: Wed, 2 Oct 2024 11:44:47 -0700 Subject: [PATCH] ci: fix js-pdk install --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3fac96e..bc42b4a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,14 +22,14 @@ jobs: - name: Setup Extism and XTP run: | curl -O https://raw.githubusercontent.com/extism/js-pdk/main/install.sh - sh install.sh - curl https://static.dylibso.com/cli/install.sh | sh + bash install.sh + curl https://static.dylibso.com/cli/install.sh | bash - name: Setup extism-py run: | curl -O https://raw.githubusercontent.com/extism/python-pdk/main/install.sh - sh install.sh - curl -LsSf https://astral.sh/uv/install.sh | sh + bash install.sh + curl -LsSf https://astral.sh/uv/install.sh | bash - name: Setup Python uses: actions/setup-python@v5