Skip to content

Commit 441492b

Browse files
authored
Merge branch 'master' into syndicate-mainnet-update
2 parents 0ca4c25 + d44371f commit 441492b

File tree

1,578 files changed

+24640
-1431
lines changed

Some content is hidden

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

1,578 files changed

+24640
-1431
lines changed

.github/workflows/action_lint.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Github-Action linter
2+
on: [pull_request]
3+
jobs:
4+
actionlint:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4.2.2
8+
- uses: reviewdog/action-actionlint@v1

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout
8-
uses: actions/checkout@v2.3.1
8+
uses: actions/checkout@v4.2.2
99
with:
1010
submodules: recursive
1111

1212
- name: Get changed files
1313
id: changed-files
14-
uses: tj-actions/changed-files@v41
14+
uses: step-security/changed-files@v45.0.1
1515

1616
- name: Check changed files
1717
run: |

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v2.3.1
10+
uses: actions/checkout@v4.2.2
1111
with:
1212
submodules: recursive
1313
- name: Build
1414
run: |
1515
./gradlew run
1616
- name: Set Node.js 18.x
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4.2.0
1818
with:
1919
node-version: 18.x
2020
- name: Run yarn install

.github/workflows/pr_checks.yml

Lines changed: 0 additions & 141 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
pull_request_target:
3+
types: [opened]
4+
jobs:
5+
comment_on_pr:
6+
runs-on: ubuntu-latest
7+
name: Comment after PR is submitted
8+
steps:
9+
- name: Comment PR
10+
uses: thollander/actions-comment-pull-request@v2
11+
with:
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
message: |
14+
You successfully submitted a PR! Due to the amount of PRs coming in: we will only look at PRs that the CI is happy with. We can also not hold your hand getting the CI green - just look how others that where merged did it and RTFM. So as long as there is any CI check that reports an error - no human will look at this. You might be able to ask for some support after supporting the project - e.g. by sending funds to lists.eth. When you fixed things after a requested change - then you also need to (re-)request a review.

.github/workflows/prettier_check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ name: Run prettier check
22

33
on:
44
push:
5+
pull_request:
56

67
jobs:
78
prettier:
89
runs-on: ubuntu-latest
910
steps:
1011
- name: Check out repo
11-
uses: actions/checkout@v2
12-
- uses: actions/cache@v2
12+
uses: actions/checkout@v4.2.2
13+
- uses: actions/cache@v4
1314
name: Configure npm caching
1415
with:
1516
path: ~/.npm

.github/workflows/prettier_write.yml

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

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
)
1515
steps:
1616
- name: Checkout the latest code
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4.2.2
1818
with:
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

.github/workflows/validate_json.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out repo
12-
uses: actions/checkout@v2
13-
- uses: actions/cache@v2
12+
uses: actions/checkout@v4.2.2
13+
- uses: actions/cache@v4
1414
name: Configure npm caching
1515
with:
1616
path: ~/.npm
@@ -21,4 +21,4 @@ jobs:
2121
working-directory: ./tools
2222
run: |-
2323
npm install
24-
node schemaCheck.js
24+
node schemaCheck.js

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018
3+
Copyright (c) 2025
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)