From 6f65c21150c4e779406e996dda4576491012b7d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Dec 2025 22:05:07 +0000 Subject: [PATCH] Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [foundry-rs/foundry-toolchain](https://github.com/foundry-rs/foundry-toolchain). Updates `peter-evans/create-pull-request` from 7.0.11 to 8.0.0 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/22a9089034f40e5a961c8808d113e2c98fb63676...98357b18bf14b5342f975ff684046ec3b2a07725) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `foundry-rs/foundry-toolchain` from 1.5.0 to 1.6.0 - [Release notes](https://github.com/foundry-rs/foundry-toolchain/releases) - [Changelog](https://github.com/foundry-rs/foundry-toolchain/blob/master/RELEASE.md) - [Commits](https://github.com/foundry-rs/foundry-toolchain/compare/50d5a8956f2e319df19e6b57539d7e2acb9f8c1e...8b0419c685ef46cb79ec93fbdc131174afceb730) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: foundry-rs/foundry-toolchain dependency-version: 1.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .../workflows/chainlink-automation-config.yml | 2 +- .github/workflows/chains-metadata.yml | 2 +- .github/workflows/detect-new-data.yml | 8 ++++---- .github/workflows/detect-new-tokens.yml | 8 ++++---- .github/workflows/test.yml | 16 ++++++++-------- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/chainlink-automation-config.yml b/.github/workflows/chainlink-automation-config.yml index 25baa736d3b..eea78c4e940 100644 --- a/.github/workflows/chainlink-automation-config.yml +++ b/.github/workflows/chainlink-automation-config.yml @@ -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' diff --git a/.github/workflows/chains-metadata.yml b/.github/workflows/chains-metadata.yml index 7b37b893318..92f139a3ff1 100644 --- a/.github/workflows/chains-metadata.yml +++ b/.github/workflows/chains-metadata.yml @@ -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' diff --git a/.github/workflows/detect-new-data.yml b/.github/workflows/detect-new-data.yml index 8487eb0fe84..b5db3efff40 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 @@ -135,7 +135,7 @@ jobs: # 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" @@ -152,7 +152,7 @@ jobs: # 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: | diff --git a/.github/workflows/detect-new-tokens.yml b/.github/workflows/detect-new-tokens.yml index 399662b3774..1894c5a213b 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 @@ -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@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" @@ -160,7 +160,7 @@ jobs: # 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: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98ed932ceca..fbe8931af32 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,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: @@ -61,7 +61,7 @@ jobs: 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 @@ -70,7 +70,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 @@ -108,7 +108,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 @@ -147,7 +147,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 @@ -179,7 +179,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 @@ -219,7 +219,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 @@ -237,7 +237,7 @@ jobs: - 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/