diff --git a/.github/workflows/code-path-changes.yml b/.github/workflows/code-path-changes.yml index 8d327a7e2b1..f543394f479 100644 --- a/.github/workflows/code-path-changes.yml +++ b/.github/workflows/code-path-changes.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/code-reviewer-assignment.yml b/.github/workflows/code-reviewer-assignment.yml index dd7aed2c930..2d7185b862a 100644 --- a/.github/workflows/code-reviewer-assignment.yml +++ b/.github/workflows/code-reviewer-assignment.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout base repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.base.ref }} fetch-depth: 2 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f86cd38a43c..691ca30b583 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/jscpd.yml b/.github/workflows/jscpd.yml index 39e54bebcf0..d695227aff5 100644 --- a/.github/workflows/jscpd.yml +++ b/.github/workflows/jscpd.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Fetch all history for all branches ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 30d327d3495..3d4873ce0ee 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -16,7 +16,7 @@ jobs: node-version: '20' - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.event.pull_request.base.sha }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 422eb16bcaf..6677ebaf60e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,14 +33,14 @@ jobs: - name: Checkout code (PR) id: checkout-pr if: ${{ github.event_name == 'pull_request_target' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: refs/pull/${{ github.event.pull_request.number }}/head - name: Checkout code (push) id: checkout-push if: ${{ github.event_name == 'push' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Commit info id: info