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
4 changes: 2 additions & 2 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
4 changes: 2 additions & 2 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
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
any_non_solidity: ${{ steps.filter.outputs.any_non_solidity }}
steps:
- uses: actions/checkout@v6
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
id: filter
with:
filters: |
Expand Down Expand Up @@ -65,7 +65,7 @@
cache-dependency-path: '**/package-lock.json'

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

Check failure on line 68 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 @@ -104,7 +104,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 @@ -143,7 +143,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 @@ -185,7 +185,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 @@ -231,7 +231,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 @@ -272,7 +272,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 @@ -313,7 +313,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
Loading