From 4aba8ab167ecfd0241f70c2c97ab5f7e4719da73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 22:29:13 +0000 Subject: [PATCH] ci: bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `5` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `4` | `6` | Updates `astral-sh/setup-uv` from 5 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v5...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) Updates `aws-actions/configure-aws-credentials` from 4 to 6 - [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...v6) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-test.yml | 6 +++--- .github/workflows/codeql.yml | 4 ++-- .github/workflows/e2e-tests-weekly.yml | 4 ++-- .github/workflows/e2e-tests.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6ad7f53a..bf3d4bc1 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -36,14 +36,14 @@ jobs: git config --global user.email "bedrock-agentcore-npm+ci@amazon.com" git config --global user.name "CI" - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v7 - run: npm ci - run: npm run build --if-present - run: npm run test:unit - run: npm run test:integ - name: Upload coverage artifact if: matrix.node-version == '20.x' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-report path: coverage/ @@ -59,7 +59,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Download coverage artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: coverage-report path: coverage/ diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a64f5bb3..aea55d20 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -26,9 +26,9 @@ jobs: - uses: actions/checkout@v6 - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: javascript-typescript - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/e2e-tests-weekly.yml b/.github/workflows/e2e-tests-weekly.yml index 6b41642f..35786f39 100644 --- a/.github/workflows/e2e-tests-weekly.yml +++ b/.github/workflows/e2e-tests-weekly.yml @@ -33,9 +33,9 @@ jobs: run: | git config --global user.email "ci@amazon.com" git config --global user.name "CI" - - uses: astral-sh/setup-uv@v5 + - uses: astral-sh/setup-uv@v7 - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ secrets.E2E_AWS_ROLE_ARN }} aws-region: ${{ inputs.aws_region || 'us-east-1' }} diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index a07a3d83..395195ac 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -33,9 +33,9 @@ jobs: run: | git config --global user.email "ci@amazon.com" git config --global user.name "CI" - - uses: astral-sh/setup-uv@v5 + - uses: astral-sh/setup-uv@v7 - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ secrets.E2E_AWS_ROLE_ARN }} aws-region: ${{ inputs.aws_region || 'us-east-1' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index effd52fe..7d174c1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -245,7 +245,7 @@ jobs: run: npm pack - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: dist path: | @@ -314,7 +314,7 @@ jobs: echo "Updated npm version: $(npm --version)" - name: Download artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist path: .