Skip to content

Commit 9bf80cc

Browse files
ci: bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/create-github-app-token](https://github.com/actions/create-github-app-token), [aws-actions/aws-secretsmanager-get-secrets](https://github.com/aws-actions/aws-secretsmanager-get-secrets) and [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action). 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 `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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d2192fc commit 9bf80cc

14 files changed

Lines changed: 17 additions & 17 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/prerelease-tarball.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- uses: astral-sh/setup-uv@v7
2929
- name: Generate GitHub App Token
3030
id: app-token
31-
uses: actions/create-github-app-token@v1
31+
uses: actions/create-github-app-token@v3
3232
with:
3333
app-id: ${{ vars.APP_ID }}
3434
private-key: ${{ secrets.APP_PRIVATE_KEY }}

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

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

144144
- name: Generate GitHub App Token
145145
id: app-token
146-
uses: actions/create-github-app-token@v1
146+
uses: actions/create-github-app-token@v3
147147
with:
148148
app-id: ${{ vars.APP_ID }}
149149
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.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 }}

0 commit comments

Comments
 (0)