From 2ca5c9483d513c1061f3d822b5e196070a0073ea Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 19 Oct 2022 23:32:44 +0300 Subject: [PATCH] Remove set-output command https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/_update-readme.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_update-readme.yml b/.github/workflows/_update-readme.yml index d7f0c86b..d50f6ff4 100644 --- a/.github/workflows/_update-readme.yml +++ b/.github/workflows/_update-readme.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: echo "::set-output name=branch_name::$(date +'bot/auto-update-%s')" + run: echo "branch_name=$(date +'bot/auto-update-%s')" >> $GITHUB_OUTPUT id: create-branch-name - run: git config user.name 'iptv-bot[bot]' - run: git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com'