Skip to content

Commit 568d6ce

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) - [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md) - [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: slackapi/slack-github-action dependency-version: 3.0.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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a6872ca commit 568d6ce

14 files changed

Lines changed: 22 additions & 22 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/cleanup-pr-tarballs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- name: Generate GitHub App Token
1818
id: app-token
19-
uses: actions/create-github-app-token@v1
19+
uses: actions/create-github-app-token@v3
2020
with:
2121
app-id: ${{ vars.APP_ID }}
2222
private-key: ${{ secrets.APP_PRIVATE_KEY }}

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

Lines changed: 2 additions & 2 deletions
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 }}
@@ -60,7 +60,7 @@ jobs:
6060
- name: Generate GitHub App Token
6161
if: matrix.cdk-source == 'main'
6262
id: app-token
63-
uses: actions/create-github-app-token@v1
63+
uses: actions/create-github-app-token@v3
6464
with:
6565
app-id: ${{ vars.APP_ID }}
6666
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ jobs:
7373
id: aws
7474
run: echo "account_id=$(aws sts get-caller-identity --query Account --output text)" >> "$GITHUB_OUTPUT"
7575
- name: Get API keys from Secrets Manager
76-
uses: aws-actions/aws-secretsmanager-get-secrets@v2
76+
uses: aws-actions/aws-secretsmanager-get-secrets@v3
7777
with:
7878
secret-ids: |
7979
E2E,${{ secrets.E2E_SECRET_ARN }}
8080
parse-json-secrets: true
8181

8282
- name: Generate GitHub App Token
8383
id: app-token
84-
uses: actions/create-github-app-token@v1
84+
uses: actions/create-github-app-token@v3
8585
with:
8686
app-id: ${{ vars.APP_ID }}
8787
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/pr-security-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
# pull_request_review events from forks, which makes label/comment writes 403.
102102
- name: Generate GitHub App token
103103
id: app-token
104-
uses: actions/create-github-app-token@v1
104+
uses: actions/create-github-app-token@v3
105105
with:
106106
app-id: ${{ vars.APP_ID }}
107107
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/pr-tarball.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
echo "name=$TARBALL_NAME" >> $GITHUB_OUTPUT
5353
- name: Generate GitHub App Token
5454
id: app-token
55-
uses: actions/create-github-app-token@v1
55+
uses: actions/create-github-app-token@v3
5656
with:
5757
app-id: ${{ vars.APP_ID }}
5858
private-key: ${{ secrets.APP_PRIVATE_KEY }}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137

138138
- name: Generate GitHub App Token
139139
id: app-token
140-
uses: actions/create-github-app-token@v1
140+
uses: actions/create-github-app-token@v3
141141
with:
142142
app-id: ${{ vars.APP_ID }}
143143
private-key: ${{ secrets.APP_PRIVATE_KEY }}
@@ -228,7 +228,7 @@ jobs:
228228

229229
- name: Generate GitHub App Token
230230
id: app-token
231-
uses: actions/create-github-app-token@v1
231+
uses: actions/create-github-app-token@v3
232232
with:
233233
app-id: ${{ vars.APP_ID }}
234234
private-key: ${{ secrets.APP_PRIVATE_KEY }}
@@ -417,7 +417,7 @@ jobs:
417417
git push origin "v$VERSION"
418418
419419
- name: Create GitHub Release
420-
uses: softprops/action-gh-release@v2
420+
uses: softprops/action-gh-release@v3
421421
with:
422422
tag_name: v${{ needs.prepare-main.outputs.version }}
423423
name: AgentCore CLI v${{ needs.prepare-main.outputs.version }}
@@ -473,7 +473,7 @@ jobs:
473473
git push origin "v$VERSION"
474474
475475
- name: Create GitHub Release
476-
uses: softprops/action-gh-release@v2
476+
uses: softprops/action-gh-release@v3
477477
with:
478478
tag_name: v${{ needs.prepare-preview.outputs.version }}
479479
name: AgentCore CLI v${{ needs.prepare-preview.outputs.version }} (Preview)

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
163163
- name: Generate GitHub App Token
164164
id: app-token
165-
uses: actions/create-github-app-token@v1
165+
uses: actions/create-github-app-token@v3
166166
with:
167167
app-id: ${{ vars.APP_ID }}
168168
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.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

0 commit comments

Comments
 (0)