Skip to content

Commit 48ebf23

Browse files
ci: bump the github-actions group with 5 updates (#491)
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](astral-sh/setup-uv@v5...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@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](github/codeql-action@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](aws-actions/configure-aws-credentials@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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3b4ee19 commit 48ebf23

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ jobs:
3636
git config --global user.email "bedrock-agentcore-npm+ci@amazon.com"
3737
git config --global user.name "CI"
3838
- name: Install uv
39-
uses: astral-sh/setup-uv@v5
39+
uses: astral-sh/setup-uv@v7
4040
- run: npm ci
4141
- run: npm run build --if-present
4242
- run: npm run test:unit
4343
- run: npm run test:integ
4444
- name: Upload coverage artifact
4545
if: matrix.node-version == '20.x'
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v7
4747
with:
4848
name: coverage-report
4949
path: coverage/
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v6
6161
- name: Download coverage artifact
62-
uses: actions/download-artifact@v7
62+
uses: actions/download-artifact@v8
6363
with:
6464
name: coverage-report
6565
path: coverage/

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- uses: actions/checkout@v6
2727

2828
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v3
29+
uses: github/codeql-action/init@v4
3030
with:
3131
languages: javascript-typescript
3232

3333
- name: Perform CodeQL Analysis
34-
uses: github/codeql-action/analyze@v3
34+
uses: github/codeql-action/analyze@v4

.github/workflows/e2e-tests-weekly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
run: |
3434
git config --global user.email "ci@amazon.com"
3535
git config --global user.name "CI"
36-
- uses: astral-sh/setup-uv@v5
36+
- uses: astral-sh/setup-uv@v7
3737
- name: Configure AWS credentials
38-
uses: aws-actions/configure-aws-credentials@v4
38+
uses: aws-actions/configure-aws-credentials@v6
3939
with:
4040
role-to-assume: ${{ secrets.E2E_AWS_ROLE_ARN }}
4141
aws-region: ${{ inputs.aws_region || 'us-east-1' }}

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
run: |
3434
git config --global user.email "ci@amazon.com"
3535
git config --global user.name "CI"
36-
- uses: astral-sh/setup-uv@v5
36+
- uses: astral-sh/setup-uv@v7
3737
- name: Configure AWS credentials
38-
uses: aws-actions/configure-aws-credentials@v4
38+
uses: aws-actions/configure-aws-credentials@v6
3939
with:
4040
role-to-assume: ${{ secrets.E2E_AWS_ROLE_ARN }}
4141
aws-region: ${{ inputs.aws_region || 'us-east-1' }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ jobs:
245245
run: npm pack
246246

247247
- name: Upload artifacts
248-
uses: actions/upload-artifact@v4
248+
uses: actions/upload-artifact@v7
249249
with:
250250
name: dist
251251
path: |
@@ -314,7 +314,7 @@ jobs:
314314
echo "Updated npm version: $(npm --version)"
315315
316316
- name: Download artifacts
317-
uses: actions/download-artifact@v7
317+
uses: actions/download-artifact@v8
318318
with:
319319
name: dist
320320
path: .

0 commit comments

Comments
 (0)