From 67cdb647474e419fd2ba1a5240f32d9d495dabda Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 17:54:07 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/deploy.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/standard-version.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 21db084c0..4f0fdc2ae 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,7 @@ jobs: demo: ${{ steps.filter.outputs.demo }} shared: ${{ steps.filter.outputs.shared }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: dorny/paths-filter@v3 id: filter with: @@ -45,7 +45,7 @@ jobs: if: ${{ needs.changes.outputs.shared == 'true' || needs.changes.outputs.demo == 'true' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: docker/setup-qemu-action@v3 - uses: docker/setup-buildx-action@v3 - uses: docker/login-action@v3 @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Prepare uses: appleboy/ssh-action@master with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d0e35c66..db1375db4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # needed to retreive all git history diff --git a/.github/workflows/standard-version.yml b/.github/workflows/standard-version.yml index fba00a245..28c5fa981 100644 --- a/.github/workflows/standard-version.yml +++ b/.github/workflows/standard-version.yml @@ -15,7 +15,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # needed to retreive all git history token: ${{ secrets.APP_GITHUB_TOKEN }}