From 8ab50bfaedb953944b0a1db1cefb4b171339af7a Mon Sep 17 00:00:00 2001 From: Dylan Anthony Date: Wed, 12 Apr 2023 20:28:49 -0600 Subject: [PATCH] ci: Remove deprecated set-output syntax --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0d2afa25b..d13aa8dd3 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -23,7 +23,7 @@ jobs: - name: Get Python Version id: get_python_version - run: echo "::set-output name=python_version::$(python --version)" + run: echo "python_version=$(python --version)" >> $GITHUB_OUTPUT - name: Cache dependencies uses: actions/cache@v3 @@ -88,7 +88,7 @@ jobs: python-version: "3.10" - name: Get Python Version id: get_python_version - run: echo "::set-output name=python_version::$(python --version)" + run: echo "python_version=$(python --version)" >> $GITHUB_OUTPUT - name: Cache dependencies uses: actions/cache@v3 with: