From d4f8aa3e98a194d7a73b0ba7c3c3aeef2d9ac2ad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 07:42:48 +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 3fb6844..df8fcab 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: demo: ${{ steps.filter.outputs.demo }} shared: ${{ steps.filter.outputs.shared }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: dorny/paths-filter@v2 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@v4 + - uses: actions/checkout@v6 - name: Set up dockertags run: | @@ -87,7 +87,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - 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 97edcc1..55f1392 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v3 + - 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 83e4816..eba0e26 100644 --- a/.github/workflows/standard-version.yml +++ b/.github/workflows/standard-version.yml @@ -20,7 +20,7 @@ jobs: steps: # Checkout action retreive the source (git clone) - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 with: fetch-depth: 0 # needed to retreive all git history token: ${{ secrets.APP_GITHUB_TOKEN }}