diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6505168..d6d19db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: - name: Get pip cache dir id: pip-cache run: | - echo "::set-output name=dir::$(pip cache dir)" + echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: Restore PIP cache uses: actions/cache@v3.0.11 with: diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index cb2e443..792c566 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -25,7 +25,7 @@ jobs: id: version run: | tag="${{ steps.release-draft.outputs.tag_name }}" - echo "::set-output name=version::${tag:1}" + echo "version=${tag:1}" >> $GITHUB_OUTPUT - name: Set setup.py version run: |