diff --git a/.github/workflows/update-branch.yml b/.github/workflows/update-branch.yml index 13153d343..4ab695519 100644 --- a/.github/workflows/update-branch.yml +++ b/.github/workflows/update-branch.yml @@ -36,7 +36,7 @@ jobs: run: | nbranch="${{ matrix.branch }}" [ "$nbranch" = 'frawhide' ] && nbranch='f42' - anda update -vv --filters updbranch=1 --labels branch=${{ matrix.branch }},nbranch=$nbranch + anda update --filters updbranch=1 --labels branch=${{ matrix.branch }},nbranch=$nbranch env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUST_BACKTRACE: full diff --git a/.github/workflows/update-nightly.yml b/.github/workflows/update-nightly.yml index 104af60f4..0f341c129 100644 --- a/.github/workflows/update-nightly.yml +++ b/.github/workflows/update-nightly.yml @@ -25,7 +25,7 @@ jobs: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Run Nightly Update - run: anda update -v --filters nightly=1 + run: anda update --filters nightly=1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUST_BACKTRACE: full diff --git a/.github/workflows/update-weekly.yml b/.github/workflows/update-weekly.yml index 46e41cb71..820368798 100644 --- a/.github/workflows/update-weekly.yml +++ b/.github/workflows/update-weekly.yml @@ -25,7 +25,7 @@ jobs: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Run Weekly Update - run: anda update -v --filters weekly=1 + run: anda update --filters weekly=1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUST_BACKTRACE: full diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d87a3fbc5..4888667c8 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -25,7 +25,7 @@ jobs: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Run Update - run: anda update -v --excludes nightly=1 --excludes weekly=1 --excludes updbranch=1 + run: anda update --excludes nightly=1 --excludes weekly=1 --excludes updbranch=1 env: GITHUB_TOKEN: ${{ secrets.AUTOUPDATE_GH_TOKEN }} RUST_BACKTRACE: full