From bb15ec655de6901a8e745b9642f85f11f9d1ed17 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:37:52 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/build-deploy-docs.yml | 2 +- .github/workflows/deploy-BETA.yml | 4 ++-- .github/workflows/deploy-RELEASE.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/mega-linter.yml | 2 +- .github/workflows/test.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-deploy-docs.yml b/.github/workflows/build-deploy-docs.yml index 539ac308..d9989d64 100644 --- a/.github/workflows/build-deploy-docs.yml +++ b/.github/workflows/build-deploy-docs.yml @@ -16,7 +16,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: 3.x diff --git a/.github/workflows/deploy-BETA.yml b/.github/workflows/deploy-BETA.yml index 0bdcb66c..f9763d31 100644 --- a/.github/workflows/deploy-BETA.yml +++ b/.github/workflows/deploy-BETA.yml @@ -33,7 +33,7 @@ jobs: environment: name: beta steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v5.0.0 with: node-version: "20.x" @@ -59,7 +59,7 @@ jobs: name: beta steps: - name: Check out the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/.github/workflows/deploy-RELEASE.yml b/.github/workflows/deploy-RELEASE.yml index a9430c3c..54ed50c2 100644 --- a/.github/workflows/deploy-RELEASE.yml +++ b/.github/workflows/deploy-RELEASE.yml @@ -30,7 +30,7 @@ jobs: environment: name: release steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # Setup .npmrc file to publish to npm - uses: actions/setup-node@v5.0.0 with: @@ -55,7 +55,7 @@ jobs: name: release steps: - name: Check out the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8cb46052..9c56375f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node uses: actions/setup-node@v5 diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index b565a99d..855f378d 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -36,7 +36,7 @@ jobs: steps: # Git Checkout - name: Checkout Code - uses: actions/checkout@v5 + 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 ad66dd58..09ca11af 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node uses: actions/setup-node@v5 with: @@ -56,7 +56,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies and link run: npm ci && npm link - name: Run tests