From ef5a35a9d250c35dbcfde5afaafb9a70f076cc09 Mon Sep 17 00:00:00 2001 From: Ardavan Oskooi Date: Sat, 29 Oct 2022 20:22:53 -0700 Subject: [PATCH] Replace deprecated `set-output` command in Github Actions CI configuration (#2295) * replace deprecated set-output command in Github Actions configuration * fix output name --- .github/workflows/build-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index dd3b99314..b26f0dd7f 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -112,7 +112,7 @@ jobs: id: pip-cache run: | python -m pip install --upgrade pip wheel - echo "::set-output name=dir::$(pip cache dir)" + echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: pip cache uses: actions/cache@v3