Skip to content

Commit ba1ab64

Browse files
Merge branch 'main' into support_putevents_in_apigatewayv2_eventbridge_integrations
2 parents 15668ba + efefbb3 commit ba1ab64

File tree

602 files changed

+268902
-201860
lines changed

Some content is hidden

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

602 files changed

+268902
-201860
lines changed

.github/workflows/analytics-metadata-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919

2020
- name: Set up Node
21-
uses: actions/setup-node@v5
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: "*"
2424
env:

.github/workflows/codebuild-pr-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,14 @@ jobs:
3030

3131
env:
3232
PR_BUILD: true
33+
JSII_SILENCE_WARNING_DEPRECATED_NODE_VERSION: true
3334

3435
steps:
3536
- name: Checkout code
3637
uses: actions/checkout@v5
3738

3839
- name: Setup Node.js
39-
uses: actions/setup-node@v5
40+
uses: actions/setup-node@v6
4041
with:
4142
node-version: "18"
4243
cache: "yarn"

.github/workflows/codecov-collect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v5
1717

1818
- name: Set up Node
19-
uses: actions/setup-node@v5
19+
uses: actions/setup-node@v6
2020

2121
- name: Install dependencies
2222
run: yarn install

.github/workflows/enum-auto-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v5
1717

1818
- name: Set up Node
19-
uses: actions/setup-node@v5
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: "*"
2222
env:

.github/workflows/enum-static-mapping-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v5
1717

1818
- name: Set up Node
19-
uses: actions/setup-node@v5
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: "*"
2222
env:

.github/workflows/integration-test-deployment.yml

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,27 @@ jobs:
3939
ref: ${{ github.event.pull_request.head.sha }}
4040
fetch-depth: 0
4141

42-
- name: Configure AWS credentials
43-
uses: aws-actions/configure-aws-credentials@v5
44-
with:
45-
role-to-assume: ${{ vars.CDK_ATMOSPHERE_OIDC_ROLE }}
46-
role-session-name: run-tests@aws-cdk-deployment-integ
47-
aws-region: us-east-1
42+
- name: Assume Atmosphere Role
43+
id: creds
44+
run: |
45+
# Assume role and capture the JSON output
46+
CREDS=$(aws sts assume-role \
47+
--role-arn ${{ vars.CDK_ATMOSPHERE_OIDC_ROLE }} \
48+
--role-session-name run-tests@aws-cdk-deployment-integ)
49+
# Parse the JSON output and set environment variables
50+
AWS_ACCESS_KEY_ID=$(echo $CREDS | jq -r '.Credentials.AccessKeyId')
51+
AWS_SECRET_ACCESS_KEY=$(echo $CREDS | jq -r '.Credentials.SecretAccessKey')
52+
AWS_SESSION_TOKEN=$(echo $CREDS | jq -r '.Credentials.SessionToken')
53+
echo "::add-mask::$AWS_ACCESS_KEY_ID"
54+
echo "::add-mask::$AWS_SECRET_ACCESS_KEY"
55+
echo "::add-mask::$AWS_SESSION_TOKEN"
56+
57+
echo "AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID" >> $GITHUB_ENV
58+
echo "AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY" >> $GITHUB_ENV
59+
echo "AWS_SESSION_TOKEN=$AWS_SESSION_TOKEN" >> $GITHUB_ENV
4860
4961
- name: Setup Node.js
50-
uses: actions/setup-node@v5
62+
uses: actions/setup-node@v6
5163
with:
5264
node-version: "lts/*"
5365
cache: "yarn"

.github/workflows/issue-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v5
1212

1313
- name: Setup Node.js
14-
uses: actions/setup-node@v5
14+
uses: actions/setup-node@v6
1515
with:
1616
node-version: '20'
1717
cache: 'yarn'

.github/workflows/lambda-runtime-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ref: ${{ github.event.pull_request.head.sha }}
1717

1818
- name: Set up Node
19-
uses: actions/setup-node@v5
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: "*"
2222
env:

.github/workflows/pr-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ jobs:
2525

2626
env:
2727
PR_BUILD: true
28+
JSII_SILENCE_WARNING_DEPRECATED_NODE_VERSION: true
2829

2930
steps:
3031
- name: Checkout code
3132
uses: actions/checkout@v5
3233

3334
- name: Setup Node.js
34-
uses: actions/setup-node@v5
35+
uses: actions/setup-node@v6
3536
with:
3637
node-version: "18"
3738
cache: "yarn"

.github/workflows/spec-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v5
2020

2121
- name: Set up Node
22-
uses: actions/setup-node@v5
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: "*"
2525
env:

0 commit comments

Comments
 (0)