Skip to content

Commit 2d35591

Browse files
authored
Merge branch 'main' into dynamic-datasource
2 parents 87dca65 + 3e977f5 commit 2d35591

File tree

211 files changed

+67627
-12186
lines changed

Some content is hidden

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

211 files changed

+67627
-12186
lines changed

.eslintignore

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

.eslintrc.js

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

.github/actions/create-prerelease/action.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ inputs:
77
package-path:
88
description: 'package path to run action e.g. package/common'
99
required: true
10-
npm-token:
11-
description: 'token to push to npm registry'
12-
required: true
13-
10+
1411
runs:
1512
using: "composite"
1613
steps:
@@ -19,7 +16,5 @@ runs:
1916
shell: bash
2017

2118
- working-directory: ${{ inputs.package-path }}
22-
run: echo "Changes exist in ${{ inputs.package-path }}" && yarn version prerelease && yarn npm publish --access public --tag dev
23-
env:
24-
NPM_TOKEN: ${{ inputs.npm-token }}
19+
run: echo "Changes exist in ${{ inputs.package-path }}" && yarn version prerelease && yarn npm publish --access public --tag dev
2520
shell: bash

.github/actions/create-release/action.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,12 @@ inputs:
99
repo-token:
1010
description: 'token to create github release'
1111
required: true
12-
npm-token:
13-
description: 'token to push to npm registry'
14-
required: true
1512

1613
runs:
1714
using: "composite"
1815
steps:
1916
- working-directory: ${{ inputs.package-path }}
2017
run: echo "Changes exist in ${{ inputs.package-path }}" && yarn npm publish --access public
21-
env:
22-
NPM_TOKEN: ${{ inputs.npm-token }}
2318
shell: bash
2419

2520
- working-directory: ${{ github.workspace }}

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
steps:
6767
#Check out
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
with:
7070
fetch-depth: 100
7171
token: ${{ secrets.REPO_TOKEN }}
@@ -156,7 +156,7 @@ jobs:
156156
utcOffset: "+12:00"
157157

158158
- name: Upload reports
159-
uses: actions/upload-artifact@v4
159+
uses: actions/upload-artifact@v5
160160
with:
161161
name: benchmark-${{steps.current-time.outputs.formattedTime}}-${{steps.query_meta.outputs.indexer_version}}
162162
path: output/benchmark/

.github/workflows/gh-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
#Check out
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 100
1414

1515
- name: Setup Node.js environment
16-
uses: actions/setup-node@v4
16+
uses: actions/setup-node@v5
1717
with:
1818
node-version: lts/*
1919

.github/workflows/node-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
changes_found: ${{ steps.check_changes.outputs.changes_found }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 2
2222

@@ -41,7 +41,7 @@ jobs:
4141
if: needs.check.outputs.changes_found == 'true'
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 100
4747
token: ${{ secrets.REPO_TOKEN }}
@@ -98,7 +98,7 @@ jobs:
9898
if: needs.check.outputs.changes_found == 'true'
9999
runs-on: ubuntu-latest
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
with:
103103
fetch-depth: 100
104104
token: ${{ secrets.REPO_TOKEN }}

.github/workflows/pr.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ jobs:
77
code-style:
88
name: code-style
99
runs-on: ubuntu-latest
10+
env:
11+
YARN_ENABLE_HARDENED_MODE: 0
1012
steps:
11-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1214
- name: Setup Node.js environment
13-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v5
1416
with:
1517
node-version: lts/*
1618
- run: yarn
@@ -46,14 +48,15 @@ jobs:
4648
SUBQL_ACCESS_TOKEN_TEST: ${{ secrets.SUBQL_ACCESS_TOKEN_TEST }}
4749
SUBQL_ORG_TEST: ${{ secrets.SUBQL_ORG_TEST }}
4850
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
51+
YARN_ENABLE_HARDENED_MODE: 0
4952
steps:
50-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5154

5255
- name: Enable btree btree_gist
5356
run: psql "postgresql://$DB_USER:$DB_PASS@$DB_HOST:$DB_PORT/$DB_DATABASE" -c "CREATE EXTENSION IF NOT EXISTS btree_gist;"
5457

5558
- name: Setup Node.js environment
56-
uses: actions/setup-node@v4
59+
uses: actions/setup-node@v5
5760
with:
5861
node-version: lts/*
5962

@@ -75,7 +78,7 @@ jobs:
7578
base-coverage-file: report-main.json
7679

7780
- name: Archive code coverage results
78-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v5
7982
with:
8083
name: code-coverage-report
8184
path: report.json

0 commit comments

Comments
 (0)