Skip to content

Commit 2fcc0ba

Browse files
agentfront[bot]frontegg-david
andcommitted
Cherry-pick: chore: update Node.js version requirements and bug fixes
Cherry-picked from #314 (merged to release/1.0.x) Original commit: cd2a8d0 Co-Authored-By: frontegg-david <69419539+frontegg-david@users.noreply.github.com>
1 parent 54e1984 commit 2fcc0ba

85 files changed

Lines changed: 1459 additions & 507 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/actions/nx-cache-restore/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
3939
- name: Restore Nx cache
4040
id: restore
41-
uses: actions/cache/restore@v4
41+
uses: actions/cache/restore@v5
4242
with:
4343
path: |
4444
.nx/cache

.github/actions/nx-cache-save/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
echo "key=${{ inputs.cache-prefix }}-${REF_KEY}-${LOCK_HASH}" >> $GITHUB_OUTPUT
2424
2525
- name: Save Nx cache
26-
uses: actions/cache/save@v4
26+
uses: actions/cache/save@v5
2727
with:
2828
path: |
2929
.nx/cache

.github/workflows/cherry-pick-prompt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
build-mode: none
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
- name: Initialize CodeQL
3333
uses: github/codeql-action/init@v4

.github/workflows/create-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fi
4545
4646
- name: Checkout
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
ref: ${{ inputs.base_branch }}
5050
fetch-depth: 0

.github/workflows/package-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
NX_DAEMON: "false"
3030
steps:
3131
- name: Checkout code
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 0
3535

@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Upload test artifacts on failure
6363
if: failure()
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v6
6565
with:
6666
name: package-e2e-failure-logs
6767
path: |

.github/workflows/perf-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@v5
62+
uses: actions/checkout@v6
6363
with:
6464
fetch-depth: 0
6565

@@ -83,7 +83,7 @@ jobs:
8383
REDIS_PORT: 6379
8484

8585
- name: Upload performance report
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v6
8787
with:
8888
name: perf-report-${{ matrix.project }}
8989
path: perf-results/
@@ -98,7 +98,7 @@ jobs:
9898
contents: write
9999

100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102

103103
- name: Setup Node.js
104104
uses: actions/setup-node@v6
@@ -110,7 +110,7 @@ jobs:
110110
run: yarn install --frozen-lockfile
111111

112112
- name: Download all artifacts
113-
uses: actions/download-artifact@v4
113+
uses: actions/download-artifact@v5
114114
with:
115115
path: perf-results
116116
pattern: perf-report-*
@@ -131,7 +131,7 @@ jobs:
131131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
132132

133133
- name: Upload consolidated baseline artifact
134-
uses: actions/upload-artifact@v4
134+
uses: actions/upload-artifact@v6
135135
with:
136136
name: perf-baseline-${{ steps.tag.outputs.TAG }}
137137
path: perf-results/

.github/workflows/perf.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
5555
steps:
5656
- name: Checkout
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858
with:
5959
fetch-depth: 0
6060

@@ -93,7 +93,7 @@ jobs:
9393
REDIS_PORT: 6379
9494

9595
- name: Upload performance report
96-
uses: actions/upload-artifact@v4
96+
uses: actions/upload-artifact@v6
9797
with:
9898
name: perf-report-${{ matrix.project }}
9999
path: perf-results/
@@ -109,10 +109,10 @@ jobs:
109109
pull-requests: write
110110

111111
steps:
112-
- uses: actions/checkout@v5
112+
- uses: actions/checkout@v6
113113

114114
- name: Download all artifacts
115-
uses: actions/download-artifact@v4
115+
uses: actions/download-artifact@v5
116116
with:
117117
path: perf-results
118118
pattern: perf-report-*
@@ -144,7 +144,7 @@ jobs:
144144
145145
- name: Comment on PR
146146
if: github.event_name == 'pull_request'
147-
uses: actions/github-script@v7
147+
uses: actions/github-script@v8
148148
with:
149149
script: |
150150
const fs = require('fs');

.github/workflows/pr-testing-registry.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
fi
4747
4848
- name: Checkout PR branch
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
fetch-depth: 0
5252
ref: refs/pull/${{ inputs.pr_number }}/head
@@ -363,14 +363,14 @@ jobs:
363363
echo "${{ env.NGROK_URL }}" > /tmp/registry-info/registry-url.txt
364364
365365
- name: Upload registry info
366-
uses: actions/upload-artifact@v4
366+
uses: actions/upload-artifact@v6
367367
with:
368368
name: pr-testing-registry-info
369369
path: /tmp/registry-info/
370370
retention-days: 1
371371

372372
- name: Comment on PR with registry info
373-
uses: actions/github-script@v7
373+
uses: actions/github-script@v8
374374
with:
375375
script: |
376376
const marker = '<!-- frontmcp-pr-testing-registry -->';
@@ -614,7 +614,7 @@ jobs:
614614
615615
- name: Comment on PR (registry stopped)
616616
if: always()
617-
uses: actions/github-script@v7
617+
uses: actions/github-script@v8
618618
with:
619619
script: |
620620
const marker = '<!-- frontmcp-pr-testing-registry -->';

.github/workflows/publish-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
steps:
6363
- name: Checkout
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 0
6767

@@ -196,7 +196,7 @@ jobs:
196196
npx nx run-many -t test --projects='demo-e2e-*' --parallel=3
197197
198198
- name: Upload build artifacts
199-
uses: actions/upload-artifact@v4
199+
uses: actions/upload-artifact@v6
200200
with:
201201
name: dist-packages
202202
path: |
@@ -235,7 +235,7 @@ jobs:
235235

236236
steps:
237237
- name: Checkout (for .nvmrc)
238-
uses: actions/checkout@v5
238+
uses: actions/checkout@v6
239239
with:
240240
sparse-checkout: |
241241
.nvmrc
@@ -246,7 +246,7 @@ jobs:
246246
run: echo "version=$(cat .nvmrc)" >> "$GITHUB_OUTPUT"
247247

248248
- name: Download build artifacts
249-
uses: actions/download-artifact@v4
249+
uses: actions/download-artifact@v5
250250
with:
251251
name: dist-packages
252252

@@ -299,7 +299,7 @@ jobs:
299299

300300
steps:
301301
- name: Checkout
302-
uses: actions/checkout@v5
302+
uses: actions/checkout@v6
303303
with:
304304
fetch-depth: 0
305305

@@ -506,7 +506,7 @@ jobs:
506506
- name: Trigger docs sync
507507
if: ${{ needs.prepare.outputs.is_prerelease != 'true' }}
508508
continue-on-error: true
509-
uses: actions/github-script@v7
509+
uses: actions/github-script@v8
510510
env:
511511
VERSION: ${{ needs.prepare.outputs.version }}
512512
VERSION_MINOR: ${{ needs.prepare.outputs.release_line }}

0 commit comments

Comments
 (0)