From 22d778d45d6c48c0a526a35942a30ae0894e40b9 Mon Sep 17 00:00:00 2001 From: Adam Reeve Date: Fri, 26 Jan 2024 09:57:23 +1300 Subject: [PATCH] Fix use of deprecated set-output --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 3a38150..8da7a0c 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -43,7 +43,7 @@ jobs: run: pip install tox - name: Compute TOXENV id: toxenv - run: echo "::set-output name=toxenv::py$(tr -d . <<< ${{ matrix.python }})" + run: echo "toxenv=py$(tr -d . <<< ${{ matrix.python }})" >> $GITHUB_OUTPUT shell: bash - name: Run tests run: tox