From 83e51e0a0661a306967a9a37d6890be0197a04be Mon Sep 17 00:00:00 2001 From: jhernandezb Date: Sat, 8 Feb 2025 12:15:24 -0600 Subject: [PATCH] fix action --- .../workflows/interchaintest_custom_runner.yml | 8 ++++---- .github/workflows/interchaintest_runner.yml | 15 +++++++-------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/interchaintest_custom_runner.yml b/.github/workflows/interchaintest_custom_runner.yml index 99201a9fc..e2d091882 100644 --- a/.github/workflows/interchaintest_custom_runner.yml +++ b/.github/workflows/interchaintest_custom_runner.yml @@ -6,7 +6,7 @@ on: test-cmd: type: string required: true - description: 'The make cmd to run to test the custom interchain tests' + description: "The make cmd to run to test the custom interchain tests" jobs: run_interchaintest_custom: @@ -20,10 +20,10 @@ jobs: - name: Set up Golang uses: actions/setup-go@v3 with: - go-version-file: 'go.mod' + go-version-file: "go.mod" - name: Download Stargaze Docker image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: sg path: /tmp @@ -35,4 +35,4 @@ jobs: run: docker load --input /tmp/sg.tar && docker images - name: Run test - run: make ${{ inputs.test-cmd }} \ No newline at end of file + run: make ${{ inputs.test-cmd }} diff --git a/.github/workflows/interchaintest_runner.yml b/.github/workflows/interchaintest_runner.yml index 7e8df0760..9cebfff90 100644 --- a/.github/workflows/interchaintest_runner.yml +++ b/.github/workflows/interchaintest_runner.yml @@ -6,8 +6,8 @@ on: test-matrix: type: string required: true - description: 'Path of the interchain test matrix file' - + description: "Path of the interchain test matrix file" + jobs: run_interchaintest: name: Interchain Test @@ -20,25 +20,24 @@ jobs: sparse-checkout: ${{ inputs.test-matrix }} - name: Download interchaintest - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: interchaintest - + - name: Download Stargaze Docker image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: sg path: /tmp - name: Make interchaintest binary executable run: chmod +x ./interchaintest - + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - + - name: Load Stargaze Docker image run: docker load --input /tmp/sg.tar && docker images - name: Run interchaintest run: ./interchaintest -matrix ./${{ inputs.test-matrix }} -log-file stdout - \ No newline at end of file