Skip to content
Open
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 @@ -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@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
branch: 'chainlink_automation_config/pr-${{ steps.compare_configs.outputs.timestamp }}'
commit-message: 'chainlink automation config updated'
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 @@ -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@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
branch: 'chains_metadata/pr-${{ steps.compare_chains.outputs.timestamp }}'
commit-message: 'chains metadata updated'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/detect-new-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

# Step 3: Cache node_modules for faster future runs
- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 48 in .github/workflows/detect-new-data.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
id: cache-node-modules
with:
path: |
Expand Down Expand Up @@ -81,7 +81,7 @@

# Step 3: Restore cached node_modules from setup job
- name: Restore node_modules
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 84 in .github/workflows/detect-new-data.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
with:
path: |
node_modules
Expand Down Expand Up @@ -135,7 +135,7 @@
# Step 10: Create a pull request if new data items were found
- name: Commit & Create Pull Request
if: steps.detect_data.outputs.new_data_found == 'true'
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Data: Update changelog for new data items"
Expand All @@ -152,7 +152,7 @@
# Step 11: Upload artifacts for debugging and record-keeping
- name: Capture output artifacts
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: data-detection-${{ github.run_id }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/detect-new-tokens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

# Cache node_modules to speed up future runs
- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 60 in .github/workflows/detect-new-tokens.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
id: cache-node-modules
with:
path: |
Expand Down Expand Up @@ -88,7 +88,7 @@

# Restore node_modules from setup job
- name: Restore node_modules
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 91 in .github/workflows/detect-new-tokens.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
with:
path: |
node_modules
Expand Down Expand Up @@ -143,7 +143,7 @@
# 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@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "CCT: Update changelog with new tokens"
Expand All @@ -160,7 +160,7 @@
# Capture output artifacts (always runs, even if previous steps failed)
- name: Capture output files
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: token-detection-artifacts-${{ github.run_id }}
path: |
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
cache-dependency-path: '**/package-lock.json'

- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 35 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
id: cache-node-modules
continue-on-error: true
with:
Expand Down Expand Up @@ -61,7 +61,7 @@
cache-dependency-path: '**/package-lock.json'

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@50d5a8956f2e319df19e6b57539d7e2acb9f8c1e # v1.5
uses: foundry-rs/foundry-toolchain@8b0419c685ef46cb79ec93fbdc131174afceb730 # v1.5
with:
version: stable
cache: false
Expand All @@ -70,7 +70,7 @@
run: forge --version

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -108,7 +108,7 @@
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -147,7 +147,7 @@
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -179,7 +179,7 @@
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
continue-on-error: true
with:
path: node_modules
Expand Down Expand Up @@ -219,7 +219,7 @@
cache-dependency-path: '**/package-lock.json'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
continue-on-error: true
with:
path: node_modules
Expand All @@ -237,7 +237,7 @@

- name: Upload Test Coverage
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-report-node-${{ env.NODE_VERSION }}
path: coverage/
Expand Down
Loading