Skip to content

Commit 0cc0021

Browse files
authored
Merge branch 'main' into downgrade
2 parents 55db763 + 319409d commit 0cc0021

Some content is hidden

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

59 files changed

+2864
-835
lines changed

.github/scripts/data/detect-data.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ node <<EOF
156156
const STREAMS_NETWORKS = [
157157
"0g", "apechain", "aptos", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
158158
"bnb-chain", "bob", "botanix", "celo", "ethereum", "gnosis-chain", "gravity", "hashkey", "hedera", "hyperliquid", "injective",
159-
"ink", "jovay", "katana", "lens", "linea", "mantle", "metis", "opbnb", "optimism", "polygon", "plasma", "ronin",
159+
"ink", "jovay", "katana", "lens", "linea", "mantle", "metis", "monad", "opbnb", "optimism", "polygon", "plasma", "ronin",
160160
"scroll", "shibarium", "sei", "soneium", "sonic",
161161
"solana", "taiko", "unichain", "worldchain", "zksync"
162162
];

.github/workflows/chainlink-automation-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: ./
1818
steps:
1919
- name: Checkout Repo
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Install Dependencies
2222
run: npm i
2323
- name: Compare current config with the deployed one
@@ -35,7 +35,7 @@ jobs:
3535
- if: ${{ steps.compare_configs.outputs.createPR }}
3636
id: chainlink_automation_config_pr
3737
name: Create pull request
38-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
38+
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
3939
with:
4040
branch: 'chainlink_automation_config/pr-${{ steps.compare_configs.outputs.timestamp }}'
4141
commit-message: 'chainlink automation config updated'

.github/workflows/chains-metadata.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: ./
1818
steps:
1919
- name: Checkout Repo
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Install Dependencies
2222
run: npm i
2323
- name: Compare current chains metadata with the source
@@ -35,7 +35,7 @@ jobs:
3535
- if: ${{ steps.compare_chains.outputs.createPR }}
3636
id: chains_metadata_pr
3737
name: Create pull request
38-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
38+
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
3939
with:
4040
branch: 'chains_metadata/pr-${{ steps.compare_chains.outputs.timestamp }}'
4141
commit-message: 'chains metadata updated'

.github/workflows/detect-new-data.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# Step 1: Check out the repository code
3333
- name: Checkout Repo
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 0 # Fetch all history for git operations
3737

@@ -67,7 +67,7 @@ jobs:
6767
steps:
6868
# Step 1: Check out repository code
6969
- name: Checkout Repo
70-
uses: actions/checkout@v5
70+
uses: actions/checkout@v6
7171
with:
7272
fetch-depth: 0 # Fetch all history for git operations
7373

@@ -135,7 +135,7 @@ jobs:
135135
# Step 10: Create a pull request if new data items were found
136136
- name: Commit & Create Pull Request
137137
if: steps.detect_data.outputs.new_data_found == 'true'
138-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
138+
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
139139
with:
140140
token: ${{ secrets.GITHUB_TOKEN }}
141141
commit-message: "Data: Update changelog for new data items"

.github/workflows/detect-new-tokens.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout Repo
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
fetch-depth: 0 # Fetch all history for git operations
5151
- name: Setup Node.js
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- name: Checkout Repo
79-
uses: actions/checkout@v5
79+
uses: actions/checkout@v6
8080
with:
8181
fetch-depth: 0 # Fetch all history for git operations
8282
- name: Setup Node.js
@@ -143,7 +143,7 @@ jobs:
143143
# Create PR for new tokens
144144
- name: Create PR with new token information
145145
if: steps.check_tokens.outputs.new_tokens_found == 'true'
146-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
146+
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
147147
with:
148148
token: ${{ secrets.GITHUB_TOKEN }}
149149
commit-message: "CCT: Update changelog with new tokens"

.github/workflows/external-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
working-directory: ./
1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
- name: Install Dependencies
1919
run: npm i
2020
- name: Run external link checks

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout Repo
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Setup Node.js
2727
uses: actions/setup-node@v6
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151
steps:
5252
- name: Checkout Repo
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454

5555
- name: Setup Node.js
5656
uses: actions/setup-node@v6
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ubuntu-latest
9898
steps:
9999
- name: Checkout Repo
100-
uses: actions/checkout@v5
100+
uses: actions/checkout@v6
101101

102102
- name: Setup Node.js
103103
uses: actions/setup-node@v6
@@ -136,7 +136,7 @@ jobs:
136136
runs-on: ubuntu-latest
137137
steps:
138138
- name: Checkout Repo
139-
uses: actions/checkout@v5
139+
uses: actions/checkout@v6
140140

141141
- name: Setup Node.js
142142
uses: actions/setup-node@v6
@@ -168,7 +168,7 @@ jobs:
168168
runs-on: ubuntu-latest
169169
steps:
170170
- name: Checkout Repo
171-
uses: actions/checkout@v5
171+
uses: actions/checkout@v6
172172

173173
- name: Setup Node.js
174174
uses: actions/setup-node@v6
@@ -212,7 +212,7 @@ jobs:
212212

213213
steps:
214214
- name: Checkout Repo
215-
uses: actions/checkout@v5
215+
uses: actions/checkout@v6
216216

217217
- name: Setup Node.js ${{ matrix.node-version }}
218218
uses: actions/setup-node@v6

.github/workflows/update-algolia-index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
working-directory: ./
1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Install Dependencies
2121
run: npm i
2222
- name: Build

0 commit comments

Comments
 (0)