Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/chainlink-automation-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
working-directory: ./
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

Check warning on line 20 in .github/workflows/chainlink-automation-config.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. Action is using node24 (node-version / warning)
- name: Install Dependencies
run: npm i
- name: Compare current config with the deployed one
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chains-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
working-directory: ./
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

Check warning on line 20 in .github/workflows/chains-metadata.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. Action is using node24 (node-version / warning)
- name: Install Dependencies
run: npm i
- name: Compare current chains metadata with the source
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/detect-new-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
steps:
# Step 1: Check out the repository code
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

Check warning on line 34 in .github/workflows/detect-new-data.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. Action is using node24 (node-version / warning)
with:
fetch-depth: 0 # Fetch all history for git operations

Expand Down Expand Up @@ -67,7 +67,7 @@
steps:
# Step 1: Check out repository code
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

Check warning on line 70 in .github/workflows/detect-new-data.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. Action is using node24 (node-version / warning)
with:
fetch-depth: 0 # Fetch all history for git operations

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/detect-new-tokens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

Check warning on line 48 in .github/workflows/detect-new-tokens.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. Action is using node24 (node-version / warning)
with:
fetch-depth: 0 # Fetch all history for git operations
- name: Setup Node.js
Expand Down Expand Up @@ -76,7 +76,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch all history for git operations
- name: Setup Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/external-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
working-directory: ./
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install Dependencies
run: npm i
- name: Run external link checks
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-algolia-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
working-directory: ./
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install Dependencies
run: npm i
- name: Build
Expand Down
Loading