From cb608b9109e6c824b7f3f8a49c2df70ec175c63a Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 7 Dec 2024 12:52:30 +0100 Subject: [PATCH] GitHub Actions: Remove the deprecated `set-output` command (#72) Fixes warnings at bottom right of https://github.com/pytest-dev/unittest2pytest/actions/runs/12145268432 Ref: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 34cae26..ba84312 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,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: Cache uses: actions/cache@v4