diff --git a/.github/workflows/detect-new-data.yml b/.github/workflows/detect-new-data.yml index 90ad076486e..dd1e14745a2 100644 --- a/.github/workflows/detect-new-data.yml +++ b/.github/workflows/detect-new-data.yml @@ -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@v5 id: cache-node-modules with: path: | @@ -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@v5 with: path: | node_modules diff --git a/.github/workflows/detect-new-tokens.yml b/.github/workflows/detect-new-tokens.yml index 5b56c7a5e2e..14f47ae167a 100644 --- a/.github/workflows/detect-new-tokens.yml +++ b/.github/workflows/detect-new-tokens.yml @@ -57,7 +57,7 @@ jobs: # Cache node_modules to speed up future runs - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-node-modules with: path: | @@ -88,7 +88,7 @@ jobs: # Restore node_modules from setup job - name: Restore node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | node_modules diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4da920c256..df6664ba00c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: 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: | @@ -65,7 +65,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-node-modules continue-on-error: true with: @@ -104,7 +104,7 @@ jobs: 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 @@ -143,7 +143,7 @@ jobs: 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 @@ -185,7 +185,7 @@ jobs: 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 @@ -231,7 +231,7 @@ jobs: 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 @@ -272,7 +272,7 @@ jobs: 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 @@ -313,7 +313,7 @@ jobs: 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