diff --git a/.github/workflows/automation-trigger-test.yml b/.github/workflows/automation-trigger-test.yml index 6888e7e4b..f398d8ded 100644 --- a/.github/workflows/automation-trigger-test.yml +++ b/.github/workflows/automation-trigger-test.yml @@ -80,7 +80,7 @@ jobs: distribution: 'temurin' cache: maven - name: Setup Node.js environment - uses: actions/setup-node@v3.6.0 + uses: actions/setup-node@v3.8.1 - name: Build with Maven id: build_maven run: | diff --git a/.github/workflows/dependabot-merger.yml b/.github/workflows/dependabot-merger.yml index 2804f0588..736878263 100644 --- a/.github/workflows/dependabot-merger.yml +++ b/.github/workflows/dependabot-merger.yml @@ -34,7 +34,7 @@ jobs: - name: Get list of PRs from dependabot id: pr_list run: | - PR_LIST=$(gh pr list --json number,author,headRefName --jq '.[] | select( .author.is_bot == true and .author.login == "app/dependabot" ) | "\(.number) \(.headRefName)"') + PR_LIST=$(gh pr list --json number,headRefName --jq '.[] | "\(.number) \(.headRefName)"' | grep dependabot) PR_LIST=$(echo "$PR_LIST" | tr -d '\r') if [ -z "$PR_LIST" ]; then echo "No PRs from dependabot found."