From df890b798c52e4b9f9b02fbe7f62c3f2234790ac Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 05:58:56 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/build.yml | 8 ++++---- .github/workflows/deploy1.yml | 2 +- .github/workflows/deploy2.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c13b449..75b47eb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: name: "Build frontend" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v5" + - uses: "actions/checkout@v6" with: ref: "${{ inputs.ref }}" - uses: "actions/setup-node@v6" @@ -32,7 +32,7 @@ jobs: name: "Build backend" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v5" + - uses: "actions/checkout@v6" with: ref: "${{ inputs.ref }}" - run: "pipx install poetry" @@ -48,7 +48,7 @@ jobs: name: "Build logo" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v5" + - uses: "actions/checkout@v6" with: ref: "${{ inputs.ref }}" - run: "pipx install poetry" @@ -69,7 +69,7 @@ jobs: name: "Build example" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v5" + - uses: "actions/checkout@v6" with: ref: "${{ inputs.ref }}" - run: "pipx install poetry" diff --git a/.github/workflows/deploy1.yml b/.github/workflows/deploy1.yml index 1d65e34..48799dd 100644 --- a/.github/workflows/deploy1.yml +++ b/.github/workflows/deploy1.yml @@ -15,7 +15,7 @@ jobs: outputs: skip: "${{ steps.check_recursive.outputs.skip || 'false' }}" # Default to false if not set steps: - - uses: "actions/checkout@v5" + - uses: "actions/checkout@v6" with: # Ensure we are not in a detached HEAD state ref: "master" token: "${{ secrets.GH_PAT }}" diff --git a/.github/workflows/deploy2.yml b/.github/workflows/deploy2.yml index bba9c08..28a8008 100644 --- a/.github/workflows/deploy2.yml +++ b/.github/workflows/deploy2.yml @@ -54,7 +54,7 @@ jobs: needs: "rebuild" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v5" + - uses: "actions/checkout@v6" with: ref: "${{ inputs.ref }}" - uses: "actions/setup-node@v6"