diff --git a/.github/workflows/chainlink-automation-config.yml b/.github/workflows/chainlink-automation-config.yml index 94ccd602919..96cc1d3ab8d 100644 --- a/.github/workflows/chainlink-automation-config.yml +++ b/.github/workflows/chainlink-automation-config.yml @@ -17,7 +17,7 @@ jobs: working-directory: ./ steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Dependencies run: npm i - name: Compare current config with the deployed one @@ -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@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 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 f9cb97ab9fd..7f5a6af4d9f 100644 --- a/.github/workflows/chains-metadata.yml +++ b/.github/workflows/chains-metadata.yml @@ -17,7 +17,7 @@ jobs: working-directory: ./ steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Dependencies run: npm i - name: Compare current chains metadata with the source @@ -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@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 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 0b561d7fdb8..0ed6b556456 100644 --- a/.github/workflows/detect-new-data.yml +++ b/.github/workflows/detect-new-data.yml @@ -31,7 +31,7 @@ jobs: steps: # Step 1: Check out the repository code - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Fetch all history for git operations @@ -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@v6 id: cache-node-modules with: path: | @@ -67,7 +67,7 @@ jobs: steps: # Step 1: Check out repository code - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Fetch all history for git operations @@ -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@v6 with: path: | node_modules @@ -140,7 +140,7 @@ jobs: # Step 10: Create a pull request if new data items or deprecation changes were found - name: Commit & Create Pull Request if: steps.detect_data.outputs.data_changes_found == 'true' - uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Data: Update changelog for data changes" diff --git a/.github/workflows/detect-new-tokens.yml b/.github/workflows/detect-new-tokens.yml index 5b56c7a5e2e..d0ce70e1a8a 100644 --- a/.github/workflows/detect-new-tokens.yml +++ b/.github/workflows/detect-new-tokens.yml @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Fetch all history for git operations - name: Setup Node.js @@ -57,7 +57,7 @@ jobs: # Cache node_modules to speed up future runs - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v6 id: cache-node-modules with: path: | @@ -76,7 +76,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Fetch all history for git operations - name: Setup Node.js @@ -88,7 +88,7 @@ jobs: # Restore node_modules from setup job - name: Restore node_modules - uses: actions/cache@v4 + uses: actions/cache@v6 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@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "CCT: Update changelog with new tokens" diff --git a/.github/workflows/external-links.yml b/.github/workflows/external-links.yml index 988fa909f47..0d9f8769cdc 100644 --- a/.github/workflows/external-links.yml +++ b/.github/workflows/external-links.yml @@ -14,7 +14,7 @@ jobs: working-directory: ./ steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Dependencies run: npm i - name: Run external link checks diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5390521be1..4feac7e4719 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,8 +26,8 @@ jobs: content: ${{ steps.filter.outputs.content }} any_non_solidity: ${{ steps.filter.outputs.any_non_solidity }} steps: - - uses: actions/checkout@v6 - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + - uses: actions/checkout@v7 + - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 id: filter with: filters: | @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -65,7 +65,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v6 id: cache-node-modules continue-on-error: true with: @@ -85,7 +85,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -95,7 +95,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Install Foundry - uses: foundry-rs/foundry-toolchain@8789b3e21e6c11b2697f5eb56eddae542f746c10 # v1.5 + uses: foundry-rs/foundry-toolchain@c7450ba673e133f5ee30098b3b54f444d3a2ca2d # v1.5 with: version: stable cache: false @@ -104,7 +104,7 @@ jobs: run: forge --version - name: Restore node_modules - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 continue-on-error: true with: path: node_modules @@ -133,7 +133,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -143,7 +143,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Restore node_modules - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 continue-on-error: true with: path: node_modules @@ -175,7 +175,7 @@ jobs: contents: read steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -185,7 +185,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Restore node_modules - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 continue-on-error: true with: path: node_modules @@ -221,7 +221,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -231,7 +231,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Restore node_modules - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 continue-on-error: true with: path: node_modules @@ -262,7 +262,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -272,7 +272,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Restore node_modules - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 continue-on-error: true with: path: node_modules @@ -303,7 +303,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Node.js uses: actions/setup-node@v6 @@ -313,7 +313,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Restore node_modules - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 continue-on-error: true with: path: node_modules diff --git a/.github/workflows/update-algolia-index.yml b/.github/workflows/update-algolia-index.yml index 4e04be8debe..bad9a7a11be 100644 --- a/.github/workflows/update-algolia-index.yml +++ b/.github/workflows/update-algolia-index.yml @@ -16,7 +16,7 @@ jobs: working-directory: ./ steps: - name: Checkout Repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Dependencies run: npm i - name: Build