Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/chainlink-automation-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
working-directory: ./
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Dependencies
run: npm i
- name: Compare current config with the deployed one
Expand All @@ -35,7 +35,7 @@ jobs:
- if: ${{ steps.compare_configs.outputs.createPR }}
id: chainlink_automation_config_pr
name: Create pull request
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
branch: 'chainlink_automation_config/pr-${{ steps.compare_configs.outputs.timestamp }}'
commit-message: 'chainlink automation config updated'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/chains-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
working-directory: ./
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Dependencies
run: npm i
- name: Compare current chains metadata with the source
Expand All @@ -35,7 +35,7 @@ jobs:
- if: ${{ steps.compare_chains.outputs.createPR }}
id: chains_metadata_pr
name: Create pull request
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
branch: 'chains_metadata/pr-${{ steps.compare_chains.outputs.timestamp }}'
commit-message: 'chains metadata updated'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/detect-new-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# Step 1: Check out the repository code
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Fetch all history for git operations

Expand All @@ -45,7 +45,7 @@ jobs:

# Step 3: Cache node_modules for faster future runs
- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v6
id: cache-node-modules
with:
path: |
Expand All @@ -67,7 +67,7 @@ jobs:
steps:
# Step 1: Check out repository code
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Fetch all history for git operations

Expand All @@ -81,7 +81,7 @@ jobs:

# Step 3: Restore cached node_modules from setup job
- name: Restore node_modules
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
node_modules
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
# Step 10: Create a pull request if new data items or deprecation changes were found
- name: Commit & Create Pull Request
if: steps.detect_data.outputs.data_changes_found == 'true'
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Data: Update changelog for data changes"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/detect-new-tokens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Fetch all history for git operations
- name: Setup Node.js
Expand All @@ -57,7 +57,7 @@ jobs:

# Cache node_modules to speed up future runs
- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v6
id: cache-node-modules
with:
path: |
Expand All @@ -76,7 +76,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Fetch all history for git operations
- name: Setup Node.js
Expand All @@ -88,7 +88,7 @@ jobs:

# Restore node_modules from setup job
- name: Restore node_modules
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
node_modules
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
# Create PR for new tokens
- name: Create PR with new token information
if: steps.check_tokens.outputs.new_tokens_found == 'true'
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "CCT: Update changelog with new tokens"
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@v6
uses: actions/checkout@v7
- name: Install Dependencies
run: npm i
- name: Run external link checks
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
content: ${{ steps.filter.outputs.content }}
any_non_solidity: ${{ steps.filter.outputs.any_non_solidity }}
steps:
- uses: actions/checkout@v6
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
- uses: actions/checkout@v7
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
id: filter
with:
filters: |
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -65,7 +65,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v6
id: cache-node-modules
continue-on-error: true
with:
Expand All @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -95,7 +95,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@8789b3e21e6c11b2697f5eb56eddae542f746c10 # v1.5
uses: foundry-rs/foundry-toolchain@c7450ba673e133f5ee30098b3b54f444d3a2ca2d # v1.5
with:
version: stable
cache: false
Expand All @@ -104,7 +104,7 @@ jobs:
run: forge --version

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -143,7 +143,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
contents: read
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -185,7 +185,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -231,7 +231,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -272,7 +272,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -313,7 +313,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
continue-on-error: true
with:
path: node_modules
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@v6
uses: actions/checkout@v7
- name: Install Dependencies
run: npm i
- name: Build
Expand Down
Loading