diff --git a/.github/workflows/axon-start-test.yml b/.github/workflows/axon-start-test.yml index c309b846d..b066b06d7 100644 --- a/.github/workflows/axon-start-test.yml +++ b/.github/workflows/axon-start-test.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ @@ -78,7 +78,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/axon-sync-test.yml b/.github/workflows/axon-sync-test.yml index c4b1f992a..0322472b1 100644 --- a/.github/workflows/axon-sync-test.yml +++ b/.github/workflows/axon-sync-test.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 2c44e52e9..aa1d5ec9f 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/e2e_test.yml b/.github/workflows/e2e_test.yml index 50c574234..45de733c1 100644 --- a/.github/workflows/e2e_test.yml +++ b/.github/workflows/e2e_test.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ @@ -76,7 +76,7 @@ jobs: shell: bash run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} - name: Node Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: npm-and-yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: | diff --git a/.github/workflows/hardfork_test.yml b/.github/workflows/hardfork_test.yml index 91143244e..7576bf1f4 100644 --- a/.github/workflows/hardfork_test.yml +++ b/.github/workflows/hardfork_test.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/openzeppelin_test_11.yml b/.github/workflows/openzeppelin_test_11.yml index 2813b5932..bc1001a60 100644 --- a/.github/workflows/openzeppelin_test_11.yml +++ b/.github/workflows/openzeppelin_test_11.yml @@ -85,7 +85,7 @@ jobs: id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Node Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: npm-and-yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: | @@ -96,7 +96,7 @@ jobs: ${{ runner.os }}-node_modules- - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/openzeppelin_test_16_19.yml b/.github/workflows/openzeppelin_test_16_19.yml index d2f0d2f26..023d2e3b0 100644 --- a/.github/workflows/openzeppelin_test_16_19.yml +++ b/.github/workflows/openzeppelin_test_16_19.yml @@ -85,7 +85,7 @@ jobs: id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Node Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: npm-and-yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: | @@ -96,7 +96,7 @@ jobs: ${{ runner.os }}-node_modules- - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/openzeppelin_test_1_5_and_12_15.yml b/.github/workflows/openzeppelin_test_1_5_and_12_15.yml index 4afd9bb1f..14deef6ad 100644 --- a/.github/workflows/openzeppelin_test_1_5_and_12_15.yml +++ b/.github/workflows/openzeppelin_test_1_5_and_12_15.yml @@ -86,7 +86,7 @@ jobs: run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Node Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: npm-and-yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: | @@ -97,7 +97,7 @@ jobs: ${{ runner.os }}-node_modules- - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/openzeppelin_test_6_10.yml b/.github/workflows/openzeppelin_test_6_10.yml index 8c3b5bdf8..6413ccfc8 100644 --- a/.github/workflows/openzeppelin_test_6_10.yml +++ b/.github/workflows/openzeppelin_test_6_10.yml @@ -85,7 +85,7 @@ jobs: id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Node Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: npm-and-yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: | @@ -96,7 +96,7 @@ jobs: ${{ runner.os }}-node_modules- - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 434934a07..e9a6ede98 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -27,7 +27,7 @@ jobs: - name: Cache of Cargo id: cargo-test-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/v3_core_test.yml b/.github/workflows/v3_core_test.yml index 3628f578b..9c961b94c 100644 --- a/.github/workflows/v3_core_test.yml +++ b/.github/workflows/v3_core_test.yml @@ -84,7 +84,7 @@ jobs: run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/.github/workflows/web3_compatible.yml b/.github/workflows/web3_compatible.yml index 860c6fce2..f9f76201f 100644 --- a/.github/workflows/web3_compatible.yml +++ b/.github/workflows/web3_compatible.yml @@ -70,7 +70,7 @@ jobs: ref: ${{ steps.axon_git_ref.outputs.result}} - name: Cache of Cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ @@ -136,7 +136,7 @@ jobs: shell: bash run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} - name: Node Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: npm-and-yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: |