diff --git a/.github/workflows/health-dashboard.yml b/.github/workflows/health-dashboard.yml index 6a463aa1c97..030ee7f4aaa 100644 --- a/.github/workflows/health-dashboard.yml +++ b/.github/workflows/health-dashboard.yml @@ -25,10 +25,10 @@ jobs: git pull git add --all if [-z "$(git status --porcelain)"]; then - echo "::set-output name=push::false" + echo "push=false" >> $GITHUB_OUTPUT else git commit -m "Add changes" -a - echo "::set-output name=push::true" + echo "push=true" >> $GITHUB_OUTPUT fi shell: bash - name: Push changes diff --git a/.github/workflows/issue-view.yml b/.github/workflows/issue-view.yml index 29033853f35..ffda405da50 100644 --- a/.github/workflows/issue-view.yml +++ b/.github/workflows/issue-view.yml @@ -25,10 +25,10 @@ jobs: git config --local user.name "GitHub Action" git add --all if [-z "$(git status --porcelain)"]; then - echo "::set-output name=push::false" + echo "push=false" >> $GITHUB_OUTPUT else git commit -m "Add changes" -a - echo "::set-output name=push::true" + echo "push=true" >> $GITHUB_OUTPUT fi shell: bash diff --git a/.github/workflows/issues-ace-team.yml b/.github/workflows/issues-ace-team.yml index df79f0aa9b8..8a60af934a6 100644 --- a/.github/workflows/issues-ace-team.yml +++ b/.github/workflows/issues-ace-team.yml @@ -25,10 +25,10 @@ jobs: git config --local user.name "GitHub Action" git add --all if [-z "$(git status --porcelain)"]; then - echo "::set-output name=push::false" + echo "push=false" >> $GITHUB_OUTPUT else git commit -m "Add changes" -a - echo "::set-output name=push::true" + echo "push=true" >> $GITHUB_OUTPUT fi shell: bash diff --git a/.github/workflows/pr-view.yml b/.github/workflows/pr-view.yml index 38c784cba97..d9d15923c14 100644 --- a/.github/workflows/pr-view.yml +++ b/.github/workflows/pr-view.yml @@ -26,10 +26,10 @@ jobs: git config --local user.name "GitHub Action" git add --all if [-z "$(git status --porcelain)"]; then - echo "::set-output name=push::false" + echo "push=false" >> $GITHUB_OUTPUT else git commit -m "Add changes" -a - echo "::set-output name=push::true" + echo "push=true" >> $GITHUB_OUTPUT fi shell: bash diff --git a/.github/workflows/transitioned-issues.yml b/.github/workflows/transitioned-issues.yml index 0021ede193c..481224bf3f2 100644 --- a/.github/workflows/transitioned-issues.yml +++ b/.github/workflows/transitioned-issues.yml @@ -25,10 +25,10 @@ jobs: git config --local user.name "GitHub Action" git add --all if [-z "$(git status --porcelain)"]; then - echo "::set-output name=push::false" + echo "push=false" >> $GITHUB_OUTPUT else git commit -m "Add changes" -a - echo "::set-output name=push::true" + echo "push=true" >> $GITHUB_OUTPUT fi shell: bash diff --git a/.github/workflows/validation-repo-test.yml b/.github/workflows/validation-repo-test.yml index 1a35bedcefa..7335e1e7948 100644 --- a/.github/workflows/validation-repo-test.yml +++ b/.github/workflows/validation-repo-test.yml @@ -32,10 +32,10 @@ jobs: git pull git add --all if [-z "$(git status --porcelain)"]; then - echo "::set-output name=push::false" + echo "push=false" >> $GITHUB_OUTPUT else git commit -m "Add changes" -a - echo "::set-output name=push::true" + echo "push=true" >> $GITHUB_OUTPUT fi shell: bash - name: Push changes @@ -60,10 +60,10 @@ jobs: git pull git add --all if [-z "$(git status --porcelain)"]; then - echo "::set-output name=push::false" + echo "push=false" >> $GITHUB_OUTPUT else git commit -m "Add changes" -a - echo "::set-output name=push::true" + echo "push=true" >> $GITHUB_OUTPUT fi shell: bash - name: Push changes