From f7dd5b80bef5718a8328c5bcbde3472d2f2743a2 Mon Sep 17 00:00:00 2001 From: Dmitrii Sherstobitov Date: Tue, 7 Jan 2025 11:33:21 -0800 Subject: [PATCH] Update is-compiled.yml --- .github/workflows/is-compiled.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/is-compiled.yml b/.github/workflows/is-compiled.yml index d18a0db1d..280b0ea13 100644 --- a/.github/workflows/is-compiled.yml +++ b/.github/workflows/is-compiled.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Check that project is compiled - run: echo "::set-output name=result::$(cd yugabyte && lein run test 2>&1 | grep 'Must be one of')" + run: echo "cd yugabyte && lein run test 2>&1 | grep 'Must be one of'" >> $GITHUB_OUTPUT id: lein_run_test_output - uses: nick-fields/assert-action@v1 name: Check output for workload missing arg @@ -23,4 +23,3 @@ jobs: expected: "workload Must be one of" actual: ${{ steps.lein_run_test_output.outputs.result }} comparison: contains -