From 44dcdad18277e11d8e7d53ce8c8a16aa265d69b9 Mon Sep 17 00:00:00 2001 From: Dulmandakh Date: Thu, 13 Jun 2024 22:32:50 +0800 Subject: [PATCH] CI: fix deprecation warning (#1551) --- .github/workflows/tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 76a72c45..0fdc7c45 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -42,14 +42,12 @@ jobs: - name: get pip cache dir id: pip-cache - run: echo "::set-output name=dir::$(pip cache dir)" - + run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: cache pip dependencies uses: actions/cache@v3 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }} - - run: pip install tox - run: tox -e ${{ matrix.tox }} - name: Upload coverage.xml