Skip to content

Commit

Permalink
Fix CI warning for deprecated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbean-bremen committed May 13, 2024
1 parent f3218f9 commit d98c2ce
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,14 @@ jobs:

- name: Get pip cache dir
id: pip-cache
shell: bash
run: |
python -m pip install --upgrade pip
echo "::set-output name=dir::$(pip cache dir)"
if [[ '${{ matrix.os }}' == 'windows-latest' ]]; then
echo "dir=$(pip cache dir)" >> $env.GITHUB_OUTPUT
else
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
fi
- name: Cache dependencies
id: cache-dep
Expand Down

0 comments on commit d98c2ce

Please sign in to comment.