From 2b21865209d6ec7c322177236ca30ddaaf65bfdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 02:35:27 +0000 Subject: [PATCH 1/3] ci(dependabot): bump aws-actions/configure-aws-credentials from 4 to 5 Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 4 to 5. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v4...v5) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/analyze.yml | 4 ++-- .github/workflows/cleanup-aws.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index db861273b..9af04229f 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -38,14 +38,14 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Configure AWS credentials for dependabot if: ${{ github.actor == 'dependabot[bot]' }} - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v5 with: aws-access-key-id: ${{ secrets.DEPENDABOT_AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.DEPENDABOT_AWS_SECRET_ACCESS_KEY }} aws-region: us-west-2 - name: Configure AWS credentials if: ${{ github.actor != 'dependabot[bot]' }} - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v5 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/cleanup-aws.yml b/.github/workflows/cleanup-aws.yml index ba4d10d22..a20be8b6c 100644 --- a/.github/workflows/cleanup-aws.yml +++ b/.github/workflows/cleanup-aws.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v4.2.2 - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v5 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} From bdc146a067c03716a8203ed1438feb4b8b545636 Mon Sep 17 00:00:00 2001 From: Ruge Li Date: Mon, 2 Feb 2026 12:13:03 -0800 Subject: [PATCH 2/3] matching the regular pr format --- .github/workflows/analyze.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index 9af04229f..48d1a21e9 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -62,7 +62,8 @@ jobs: GH_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }} run: | MARKER="" - COMMENT_BODY="${MARKER}\n$(cat ./results/analysis_report.md)" + COMMENT_BODY="${MARKER} + $(cat ./results/analysis_report.md)" EXISTING_COMMENT_ID=$(gh api "/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments" --jq ".[] | select(.body | contains(\"${MARKER}\")) | .id" | head -1) if [ -n "$EXISTING_COMMENT_ID" ]; then echo "Updating existing comment with ID: $EXISTING_COMMENT_ID" From 4dbcc65f221293781abc7a33a28d6397e22e236f Mon Sep 17 00:00:00 2001 From: Ruge Li Date: Tue, 3 Feb 2026 10:32:37 -0800 Subject: [PATCH 3/3] trigger codeQL