From 7724a3ec8c98e1f938d02cb1d36314cf8211003d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 17:46:46 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/checks.yml | 4 ++-- .github/workflows/commit.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/tests.yml | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index a586f2c..2599638 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -9,7 +9,7 @@ jobs: name: editorconfig steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check editorconfig uses: editorconfig-checker/action-editorconfig-checker@main package-json: @@ -17,7 +17,7 @@ jobs: name: package.json steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pnpm uses: pnpm/action-setup@v4 with: diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index ee03f3b..2ae29ac 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -7,7 +7,7 @@ jobs: name: commitlint steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Install pnpm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9b4b3ed..9127674 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: workflow: ${{ steps.check.outputs.workflow }} steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Context check id: check uses: trigensoftware/simple-release-action@latest @@ -28,7 +28,7 @@ jobs: if: needs.check.outputs.workflow == 'pull-request' steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Create or update pull request uses: trigensoftware/simple-release-action@latest with: @@ -41,7 +41,7 @@ jobs: if: needs.check.outputs.workflow == 'release' steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pnpm uses: pnpm/action-setup@v4 with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6202b53..bedfdc9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: test-unit: ${{ steps.set-matrix.outputs.test-unit }} steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Node.js uses: actions/setup-node@v6 with: @@ -30,7 +30,7 @@ jobs: name: ${{ matrix.workspace }} / types steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pnpm uses: pnpm/action-setup@v4 with: @@ -53,7 +53,7 @@ jobs: name: ${{ matrix.workspace }} / lint steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pnpm uses: pnpm/action-setup@v4 with: @@ -76,7 +76,7 @@ jobs: name: ${{ matrix.workspace }} / unit steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install pnpm uses: pnpm/action-setup@v4 with: