Skip to content

Commit 8a00212

Browse files
authored
Merge branch 'main' into feature/healthcheck-property-app-lb-fargate-svc
2 parents 7c3b301 + 7eedb54 commit 8a00212

1,152 files changed

Lines changed: 176068 additions & 28655 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,30 @@
1-
> REPLACE THIS TEXT BLOCK
2-
>
3-
> Describe the reason for this change, what the solution is, and any
4-
> important design decisions you made.
5-
>
6-
> Remember to follow the [CONTRIBUTING GUIDE] and [DESIGN GUIDELINES] for any
7-
> code you submit.
8-
>
9-
> [CONTRIBUTING GUIDE]: https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md
10-
> [DESIGN GUIDELINES]: https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md
1+
### Issue # (if applicable)
112

123
Closes #<issue number here>.
134

5+
### Reason for this change
6+
7+
<!--What is the bug or use case behind this change?-->
8+
9+
### Description of changes
10+
11+
<!--What code changes did you make? Have you made any important design decisions?-->
12+
13+
### Description of how you validated changes
14+
15+
<!--Have you added any unit tests and/or integration tests?-->
16+
17+
### Checklist
18+
- [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
19+
20+
<!--Does this PR includes breaking changes? If it does, list them here in the following format (notice how multiple breaking changes should be formatted):
21+
22+
```
23+
BREAKING CHANGE: Description of the breaking change, the previous behaviour, and the new behaviour.
24+
* **module-name:** Another breaking change
25+
* **module-name:** Yet another breaking change
26+
```
27+
-->
1428
----
1529

1630
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*

.github/workflows/auto-approve.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
permissions:
1313
pull-requests: write
1414
steps:
15-
- uses: hmarr/auto-approve-action@v3.2.1
15+
- uses: hmarr/auto-approve-action@v4.0.0
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/repo-metrics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
SEARCH_QUERY: 'repo:aws/aws-cdk is:issue created:${{ env.last_month }} -reason:"not planned"'
3737

3838
- name: Create report for issues
39-
uses: peter-evans/create-issue-from-file@v4
39+
uses: peter-evans/create-issue-from-file@v5
4040
with:
4141
title: Monthly issue metrics report
4242
token: ${{ secrets.GITHUB_TOKEN }}
@@ -50,7 +50,7 @@ jobs:
5050
SEARCH_QUERY: 'repo:aws/aws-cdk is:pr created:${{ env.last_month }} -is:draft'
5151

5252
- name: Create report for PRs
53-
uses: peter-evans/create-issue-from-file@v4
53+
uses: peter-evans/create-issue-from-file@v5
5454
with:
5555
title: Monthly PR metrics report
5656
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/request-cli-integ-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
persist-credentials: false
2020
- name: Find changed cli files
2121
id: changed-cli-files
22-
uses: tj-actions/changed-files@62f4729b5df35e6e0e01265fa70a82ccaf196b4b
22+
uses: tj-actions/changed-files@90a06d6ba9543371ab4df8eeca0be07ca6054959
2323
with:
2424
base_sha: ${{ github.event.pull_request.base.sha }}
2525
files_yaml: |

.github/workflows/spec-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
path: ${{ runner.temp }}
144144

145145
- name: Make Pull Request
146-
uses: peter-evans/create-pull-request@v5
146+
uses: peter-evans/create-pull-request@v6
147147
with:
148148
# Git commit details
149149
branch: automation/spec-update

.github/workflows/update-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
CONTRIB_OUTPUT_FILE: 'CONTRIBUTORS.md'
1919
CONTRIB_IGNORE: 'github-actions[bot],mergify[bot],dependabot[bot],dependabot-preview[bot],aws-cdk-automation'
2020
- name: Create a PR
21-
uses: peter-evans/create-pull-request@v5
21+
uses: peter-evans/create-pull-request@v6
2222
with:
2323
# Git commit details
2424
branch: automation/update-contributors

.github/workflows/update-metadata-regions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: '[ -s ${{ runner.temp }}/update-spec.patch ] && git apply ${{ runner.temp }}/update-spec.patch || echo "Empty patch. Skipping."'
6060

6161
- name: Make Pull Request
62-
uses: peter-evans/create-pull-request@v5
62+
uses: peter-evans/create-pull-request@v6
6363
with:
6464
# Git commit details
6565
branch: automation/region-update

.github/workflows/yarn-upgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
3030

3131
- name: Restore Yarn cache
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ${{ steps.yarn-cache.outputs.dir }}
3535
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -116,7 +116,7 @@ jobs:
116116
}}/upgrade.patch || echo "Empty patch. Skipping."'
117117

118118
- name: Make Pull Request
119-
uses: peter-evans/create-pull-request@v5
119+
uses: peter-evans/create-pull-request@v6
120120
with:
121121
# Git commit details
122122
branch: automation/yarn-upgrade

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@ RELEASE_NOTES.md
5151

5252
# Produced by integ tests
5353
read*lock
54+
55+
# VSCode jest plugin
56+
.test-output
57+

.pre-commit-config.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)