Skip to content

Commit 44dcdad

Browse files
authored
CI: fix deprecation warning (#1551)
1 parent 221afaf commit 44dcdad

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,12 @@ jobs:
4242
4343
- name: get pip cache dir
4444
id: pip-cache
45-
run: echo "::set-output name=dir::$(pip cache dir)"
46-
45+
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
4746
- name: cache pip dependencies
4847
uses: actions/cache@v3
4948
with:
5049
path: ${{ steps.pip-cache.outputs.dir }}
5150
key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}
52-
5351
- run: pip install tox
5452
- run: tox -e ${{ matrix.tox }}
5553
- name: Upload coverage.xml

0 commit comments

Comments
 (0)