diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 23f195e87c..8f2a4a031f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2352c79686..10559fac11 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -62,7 +62,7 @@ jobs: pull-requests: write steps: - name: Checkout PR branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ github.event.action != 'closed' }} with: repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -70,7 +70,7 @@ jobs: persist-credentials: false - name: Checkout base branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ github.event.action == 'closed' }} with: repository: ${{ github.event.pull_request.base.repo.full_name }}