From a6965321772e663227007021b400ff3cbc188626 Mon Sep 17 00:00:00 2001 From: joanestebanr <129153821+joanestebanr@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:18:33 +0200 Subject: [PATCH] wip --- .github/actions/setup-kurtosis-cdk/action.yml | 33 ------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/actions/setup-kurtosis-cdk/action.yml diff --git a/.github/actions/setup-kurtosis-cdk/action.yml b/.github/actions/setup-kurtosis-cdk/action.yml deleted file mode 100644 index fa04daaf..00000000 --- a/.github/actions/setup-kurtosis-cdk/action.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: kurtosis-cdk-setup -description: Install tools to deploy the CDK stack with Kurtosis - -inputs: - kurtosis-version: - description: The version of kurtosis - required: false - default: '0.90.1' # https://github.com/kurtosis-tech/kurtosis/releases - -runs: - using: "composite" - steps: - - name: Install kurtosis - shell: bash - run: | - echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list - sudo apt update - sudo apt install kurtosis-cli=${{ inputs.kurtosis-version }} - kurtosis version - - - name: Disable kurtosis analytics - shell: bash - run: kurtosis analytics disable - - - name: Install yq - shell: bash - run: | - pip3 install yq - yq --version - - - name: Install foundry - uses: foundry-rs/foundry-toolchain@v1