Skip to content

Commit 040e32f

Browse files
authored
Merge branch 'main' into websocket-accesslog
2 parents 3db42c6 + 3384724 commit 040e32f

File tree

2,508 files changed

+2967747
-2883225
lines changed

Some content is hidden

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

2,508 files changed

+2967747
-2883225
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@v4
21+
uses: actions/setup-node@v5
2222
with:
2323
node-version: "*"
2424
env:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/checkout@v5
3535

3636
- name: Setup Node.js
37-
uses: actions/setup-node@v4
37+
uses: actions/setup-node@v5
3838
with:
3939
node-version: "18"
4040
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@v4
19+
uses: actions/setup-node@v5
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@v4
19+
uses: actions/setup-node@v5
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@v4
19+
uses: actions/setup-node@v5
2020
with:
2121
node-version: "*"
2222
env:

.github/workflows/issue-regression-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Fetch template body
1313
id: check_regression
14-
uses: actions/github-script@v7
14+
uses: actions/github-script@v8
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717
TEMPLATE_BODY: ${{ github.event.issue.body }}

.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@v4
14+
uses: actions/setup-node@v5
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@v4
19+
uses: actions/setup-node@v5
2020
with:
2121
node-version: "*"
2222
env:

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v5
3232

3333
- name: Setup Node.js
34-
uses: actions/setup-node@v4
34+
uses: actions/setup-node@v5
3535
with:
3636
node-version: "18"
3737
cache: "yarn"

.github/workflows/pr-linter.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- name: 'Download workflow_run artifact'
3535
if: github.event_name == 'workflow_run'
3636
uses: dawidd6/action-download-artifact@v11
37+
continue-on-error: true
3738
with:
3839
run_id: ${{ github.event.workflow_run.id }}
3940
name: pr_info
@@ -46,10 +47,10 @@ jobs:
4647
id: 'pr_output'
4748
run: |
4849
if [[ ! -f pr/pr_number ]]; then
49-
echo "${{ github.event.pull_request.number }}" > pr/pr_number
50+
echo "${{ github.event.workflow_run.pull_requests[0].number }}" > pr/pr_number
5051
fi
5152
if [[ ! -f pr/pr_sha ]]; then
52-
echo "${{ github.event.pull_request.head.sha }}" > pr/pr_sha
53+
echo "${{ github.event.workflow_run.head_sha }}" > pr/pr_sha
5354
fi
5455
cat pr/*
5556
echo "pr_number=$(cat pr/pr_number)" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)