From aa17fd366de8b152684fbf5774f342fc68a75d2f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:12:15 +0000 Subject: [PATCH] Update actions/checkout action to v6 --- .github/workflows/deploy-PROD.yml | 2 +- .github/workflows/deploy-RELEASE.yml | 2 +- .github/workflows/github-dependents-info.yml | 2 +- .github/workflows/mega-linter.yml | 2 +- .github/workflows/test.yml | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy-PROD.yml b/.github/workflows/deploy-PROD.yml index 54c6a03..8a36462 100644 --- a/.github/workflows/deploy-PROD.yml +++ b/.github/workflows/deploy-PROD.yml @@ -34,7 +34,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/deploy-RELEASE.yml b/.github/workflows/deploy-RELEASE.yml index cfb0d13..930a4b6 100644 --- a/.github/workflows/deploy-RELEASE.yml +++ b/.github/workflows/deploy-RELEASE.yml @@ -29,7 +29,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/github-dependents-info.yml b/.github/workflows/github-dependents-info.yml index edee700..44fefbc 100644 --- a/.github/workflows/github-dependents-info.yml +++ b/.github/workflows/github-dependents-info.yml @@ -29,7 +29,7 @@ jobs: steps: # Git Checkout - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index cf2f530..3af6976 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -29,7 +29,7 @@ jobs: steps: # Git Checkout - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ee45644..184e7e1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - uses: actions/setup-node@v4.1.0 with: node-version: "18.x" @@ -29,7 +29,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - uses: actions/setup-node@v4.1.0 with: node-version: "18.x" @@ -44,7 +44,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - uses: actions/setup-node@v4.1.0 with: node-version: "18.x"