Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

Commit 2483135

Browse files
Fix validation error of RPC_URL (#57)
* Cleanup Github actions. Deprecate Netlify * fix IPFS gateway for PR check * update example variables * Fix circular reference and overflow error in dev * Update ts-node * Handle validation error by defaulting to mainnet * Revert change --------- Co-authored-by: Guillermo Perez <gpmayorga@users.noreply.github.com>
1 parent aecbfca commit 2483135

19 files changed

Lines changed: 271 additions & 858 deletions

.github/workflows/e2e-tests.yml

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

.github/workflows/gateway.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717

1818
steps:
1919
# Setup
20-
- uses: actions/checkout@v2
21-
- uses: actions/setup-node@v2-beta
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
2222
with:
23-
node-version: '12'
23+
node-version: '18'
2424

2525
# Cache
2626
- name: Get yarn cache directory path
2727
id: yarn-cache-dir-path
2828
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
2929

30-
- uses: actions/cache@v2
30+
- uses: actions/cache@v4
3131
id: yarn-cache
3232
with:
3333
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -45,17 +45,17 @@ jobs:
4545

4646
steps:
4747
# Setup
48-
- uses: actions/checkout@v2
49-
- uses: actions/setup-node@v2-beta
48+
- uses: actions/checkout@v4
49+
- uses: actions/setup-node@v4
5050
with:
51-
node-version: '12'
51+
node-version: '18'
5252

5353
# Cache
5454
- name: Get yarn cache directory path
5555
id: yarn-cache-dir-path
5656
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
5757

58-
- uses: actions/cache@v2
58+
- uses: actions/cache@v4
5959
id: yarn-cache
6060
with:
6161
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -78,21 +78,21 @@ jobs:
7878

7979
steps:
8080
- name: Checkout
81-
uses: actions/checkout@v2
81+
uses: actions/checkout@v4
8282
- name: Set up QEMU
83-
uses: docker/setup-qemu-action@v1
83+
uses: docker/setup-qemu-action@v2
8484
- name: Set up Docker Buildx
85-
uses: docker/setup-buildx-action@v1
85+
uses: docker/setup-buildx-action@v2
8686
- name: Login to DockerHub
87-
uses: docker/login-action@v1
87+
uses: docker/login-action@v3
8888
with:
8989
username: ${{ secrets.DOCKERHUB_USERNAME }}
9090
password: ${{ secrets.DOCKERHUB_TOKEN }}
9191
- name: Get image tag
9292
id: tag
9393
run: echo "::set-output name=TAG_NAME::$(echo "$(git rev-parse --abbrev-ref HEAD)-$(date +'%Y%m%d%H%M%S')-$(git rev-parse --short HEAD)")"
9494
- name: Build and push
95-
uses: docker/build-push-action@v2
95+
uses: docker/build-push-action@v3
9696
with:
9797
context: .
9898
file: ./gateway/Dockerfile

.github/workflows/onboard-api-staging.yml

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

.github/workflows/onboard-api.yml

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

.github/workflows/root.yml

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

.github/workflows/tinlake-bot.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010

1111
steps:
1212
# Setup
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2-beta
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '12'
16+
node-version: '18'
1717

1818
# Cache
1919
- name: Get yarn cache directory path
2020
id: yarn-cache-dir-path
2121
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
2222

23-
- uses: actions/cache@v2
23+
- uses: actions/cache@v4
2424
id: yarn-cache
2525
with:
2626
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -40,21 +40,21 @@ jobs:
4040

4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v2
43+
uses: actions/checkout@v4
4444
- name: Set up QEMU
45-
uses: docker/setup-qemu-action@v1
45+
uses: docker/setup-qemu-action@v2
4646
- name: Set up Docker Buildx
47-
uses: docker/setup-buildx-action@v1
47+
uses: docker/setup-buildx-action@v2
4848
- name: Login to DockerHub
49-
uses: docker/login-action@v1
49+
uses: docker/login-action@v2
5050
with:
5151
username: ${{ secrets.DOCKERHUB_USERNAME }}
5252
password: ${{ secrets.DOCKERHUB_TOKEN }}
5353
- name: Get image tag
5454
id: tag
5555
run: echo "::set-output name=TAG_NAME::$(echo "$(git rev-parse --abbrev-ref HEAD)-$(date +'%Y%m%d%H%M%S')-$(git rev-parse --short HEAD)")"
5656
- name: Build and push
57-
uses: docker/build-push-action@v2
57+
uses: docker/build-push-action@v3
5858
with:
5959
context: .
6060
file: ./tinlake-bot/docker/Dockerfile

0 commit comments

Comments
 (0)