Skip to content

Commit 307c0cc

Browse files
committed
Merge branch 'dev-987-asset-usage-limit-offset-pagination' into anji/dev-1013-mirgrate-to-universal-table
Conflicts: jsapp/js/account/usage/usageProjectBreakdown.tsx
2 parents d1bbb52 + 6e62f77 commit 307c0cc

File tree

840 files changed

+28841
-21090
lines changed

Some content is hidden

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

840 files changed

+28841
-21090
lines changed

.github/filters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ darker:
1414

1515
biome:
1616
- './**/*.(js|jsx|ts|tsx)' # js or ts files.
17+
- 'tsconfig.json' # non-source files.
1718
- 'biome.jsonc' # configuration.
1819
- '{package*.json,patches/*.patch}' # npm + postinstall
1920
- '.github/workflows/biome.yml' # ci

.github/workflows/biome.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: ubuntu-24.04
99

1010
steps:
11-
- uses: actions/checkout@v4
12-
- uses: actions/setup-node@v4
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-node@v5
1313
with:
1414
node-version: '20.18.1' # version that's pinned in Dockerfile for kpi release
1515
check-latest: true # download newer semver match if available

.github/workflows/chromatic.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
title: ${{ steps.get-head-commit-title.outputs.title }}
1313
sha: ${{ steps.get-head-commit-sha.outputs.sha }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
ref: "main"
@@ -31,7 +31,7 @@ jobs:
3131
outputs:
3232
should-run: ${{ steps.should-run.outputs.should-run }}
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
ref: "main"
3737
- name: Print latest commit
@@ -52,11 +52,11 @@ jobs:
5252
chromatic-url: ${{ steps.run-chromatic.outputs.url }}
5353
steps:
5454
- name: Checkout code
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
fetch-depth: 0
5858
ref: "main"
59-
- uses: actions/setup-node@v4
59+
- uses: actions/setup-node@v5
6060
with:
6161
node-version: 20.18.1
6262
- name: Install dependencies

.github/workflows/ci-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-24.04
99
permissions: { pull-requests: read }
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- id: filter
1313
uses: dorny/paths-filter@v3
1414
name: Detect changed files

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
build-mode: none
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
# Add any setup steps before running the `github/codeql-action/init` action.
3737
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/darker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
runs-on: ubuntu-24.04
77
steps:
88
- name: Checkout code
9-
uses: actions/checkout@v4
9+
uses: actions/checkout@v5
1010
with:
1111
# In addition to checking out the 'merge commit', we also want to
1212
# fetch enough commits to find the most recent commit in the base
1313
# branch (typically 'main')
1414
fetch-depth: 100
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.10'
2020

.github/workflows/find-releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
next_branch: ${{ steps.version.outputs.next_branch }}
4141
next_minor: ${{ steps.version.outputs.next_minor }}
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
with:
4545
fetch-depth: "0"
4646
- name: Find next release tag and branch

.github/workflows/nonprod-releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Configure AWS Credentials
30-
uses: aws-actions/configure-aws-credentials@v4.3.1
30+
uses: aws-actions/configure-aws-credentials@v5.0.0
3131
with:
3232
aws-access-key-id: ${{ secrets.GHA_ALL_REPOS_ACCESS_KEY }}
3333
aws-secret-access-key: ${{ secrets.GHA_ALL_REPOS_SECRET_KEY }}

.github/workflows/npm-test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
outputs:
99
playwright-version: ${{ steps.get_playwright_version.outputs.playwright-version }}
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- id: get_playwright_version
1313
uses: eviden-actions/get-playwright-version@v1
1414

@@ -27,8 +27,8 @@ jobs:
2727
fail-fast: false # Let each job finish
2828

2929
steps:
30-
- uses: actions/checkout@v4
31-
- uses: actions/setup-node@v4
30+
- uses: actions/checkout@v5
31+
- uses: actions/setup-node@v5
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434
check-latest: true # download newer semver match if available
@@ -71,6 +71,11 @@ jobs:
7171
(before CI tests)
7272
run: rm -rf --verbose ./node_modules/.cache
7373
74+
- name: Fail on uncommitted package-lock.json changes
75+
run: |
76+
git diff
77+
git diff-index --exit-code HEAD
78+
7479
# Check for TypeScript errors
7580
- name: Check TypeScript
7681
run: npm run lint:types

.github/workflows/openapi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
- 6379:6379
4343
steps:
4444

45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646

4747
- name: Set up Python ${{ matrix.python-version }}
48-
uses: actions/setup-python@v5
48+
uses: actions/setup-python@v6
4949
with:
5050
python-version: ${{ matrix.python-version }}
5151

@@ -84,8 +84,8 @@ jobs:
8484
runs-on: ubuntu-24.04
8585

8686
steps:
87-
- uses: actions/checkout@v4
88-
- uses: actions/setup-node@v4
87+
- uses: actions/checkout@v5
88+
- uses: actions/setup-node@v5
8989
with:
9090
node-version: 20.18.1 # version that's pinned in Dockerfile for kpi release. FYI v22 doesn't work out of box.
9191
check-latest: true # download newer semver match if available

0 commit comments

Comments
 (0)