Skip to content

Commit 0cca4bd

Browse files
ci: bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1` | `3` | | [aws-actions/aws-secretsmanager-get-secrets](https://github.com/aws-actions/aws-secretsmanager-get-secrets) | `2` | `3` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `2.1.1` | `3.0.3` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/create-github-app-token` from 1 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v1...v3) Updates `aws-actions/aws-secretsmanager-get-secrets` from 2 to 3 - [Release notes](https://github.com/aws-actions/aws-secretsmanager-get-secrets/releases) - [Commits](aws-actions/aws-secretsmanager-get-secrets@v2...v3) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v2...v3) Updates `slackapi/slack-github-action` from 2.1.1 to 3.0.3 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](slackapi/slack-github-action@v2.1.1...v3.0.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/aws-secretsmanager-get-secrets dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: slackapi/slack-github-action dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent eba0e40 commit 0cca4bd

8 files changed

Lines changed: 10 additions & 10 deletions

.github/workflows/agent-restricted.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Generate GitHub App Token
7070
id: app-token
71-
uses: actions/create-github-app-token@v1
71+
uses: actions/create-github-app-token@v3
7272
with:
7373
app-id: ${{ vars.APP_ID }}
7474
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/ci-failure-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- name: Generate GitHub App Token
2323
id: app-token
24-
uses: actions/create-github-app-token@v1
24+
uses: actions/create-github-app-token@v3
2525
with:
2626
app-id: ${{ vars.APP_ID }}
2727
private-key: ${{ secrets.APP_PRIVATE_KEY }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
id: aws
5151
run: echo "account_id=$(aws sts get-caller-identity --query Account --output text)" >> "$GITHUB_OUTPUT"
5252
- name: Get API keys from Secrets Manager
53-
uses: aws-actions/aws-secretsmanager-get-secrets@v2
53+
uses: aws-actions/aws-secretsmanager-get-secrets@v3
5454
with:
5555
secret-ids: |
5656
E2E,${{ secrets.E2E_SECRET_ARN }}

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
id: aws
7171
run: echo "account_id=$(aws sts get-caller-identity --query Account --output text)" >> "$GITHUB_OUTPUT"
7272
- name: Get API keys from Secrets Manager
73-
uses: aws-actions/aws-secretsmanager-get-secrets@v2
73+
uses: aws-actions/aws-secretsmanager-get-secrets@v3
7474
with:
7575
secret-ids: |
7676
E2E,${{ secrets.E2E_SECRET_ARN }}

.github/workflows/release-main-and-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ jobs:
403403
git push origin "v$VERSION"
404404
405405
- name: Create GitHub Release
406-
uses: softprops/action-gh-release@v2
406+
uses: softprops/action-gh-release@v3
407407
with:
408408
tag_name: v${{ needs.prepare-main.outputs.version }}
409409
name: AgentCore CLI v${{ needs.prepare-main.outputs.version }}
@@ -459,7 +459,7 @@ jobs:
459459
git push origin "v$VERSION"
460460
461461
- name: Create GitHub Release
462-
uses: softprops/action-gh-release@v2
462+
uses: softprops/action-gh-release@v3
463463
with:
464464
tag_name: v${{ needs.prepare-preview.outputs.version }}
465465
name: AgentCore CLI v${{ needs.prepare-preview.outputs.version }} (Preview)

.github/workflows/slack-issue-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Send issue details to Slack
12-
uses: slackapi/slack-github-action@v2.1.1
12+
uses: slackapi/slack-github-action@v3.0.3
1313
with:
1414
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
1515
webhook-type: webhook-trigger

.github/workflows/slack-open-prs-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
);
4141
4242
- name: Send open PRs summary to Slack
43-
uses: slackapi/slack-github-action@v2.1.1
43+
uses: slackapi/slack-github-action@v3.0.3
4444
with:
4545
webhook: ${{ secrets.SLACK_OPEN_PRS_WEBHOOK_URL }}
4646
webhook-type: webhook-trigger

.github/workflows/sync-from-public.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
sync:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
token: ${{ secrets.GITHUB_TOKEN }}
@@ -106,7 +106,7 @@ jobs:
106106
sync-preview:
107107
runs-on: ubuntu-latest
108108
steps:
109-
- uses: actions/checkout@v4
109+
- uses: actions/checkout@v6
110110
with:
111111
fetch-depth: 0
112112
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)