From 08c5a1f83cdf25c13343a5f4ffed97a1987911d9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Thu, 20 Nov 2025 16:34:17 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .gitea/workflows/build-push-docker.yml | 2 +- .gitea/workflows/changelog.yaml | 2 +- .gitea/workflows/ci-docker.yml | 2 +- .gitea/workflows/ci-python-poetry-with-docker.yml | 2 +- .gitea/workflows/ci-python-poetry.yml | 2 +- .gitea/workflows/ci-python-uv-with-docker.yml | 2 +- .gitea/workflows/ci-python-with-docker.yml | 2 +- .gitea/workflows/ci-python.yml | 2 +- .gitea/workflows/create-release.yml | 4 ++-- .gitea/workflows/docker-compose-deploy.yml | 2 +- .gitea/workflows/release-with-tag.yaml | 2 +- .github/workflows/build-push-attest-docker.yml | 2 +- .github/workflows/ci-docker.yml | 2 +- .github/workflows/ci-python-poetry-with-docker.yml | 2 +- .github/workflows/ci-python-poetry.yml | 2 +- .github/workflows/ci-python-with-docker.yml | 2 +- .github/workflows/ci-python.yml | 2 +- .github/workflows/create-release.yml | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.gitea/workflows/build-push-docker.yml b/.gitea/workflows/build-push-docker.yml index 0068688..95b3c58 100644 --- a/.gitea/workflows/build-push-docker.yml +++ b/.gitea/workflows/build-push-docker.yml @@ -43,7 +43,7 @@ jobs: REPO: ${{ gitea.repository }} - name: Check out repository - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 ref: ${{ inputs.release }} diff --git a/.gitea/workflows/changelog.yaml b/.gitea/workflows/changelog.yaml index 38ad1c7..744cfec 100644 --- a/.gitea/workflows/changelog.yaml +++ b/.gitea/workflows/changelog.yaml @@ -19,7 +19,7 @@ jobs: clean_changelog: ${{ steps.get_next_version.outputs.clean_changelog }} steps: - name: Check out repository - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-docker.yml b/.gitea/workflows/ci-docker.yml index 4c13980..09b837f 100644 --- a/.gitea/workflows/ci-docker.yml +++ b/.gitea/workflows/ci-docker.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-poetry-with-docker.yml b/.gitea/workflows/ci-python-poetry-with-docker.yml index d669d5c..26ae0b9 100644 --- a/.gitea/workflows/ci-python-poetry-with-docker.yml +++ b/.gitea/workflows/ci-python-poetry-with-docker.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-poetry.yml b/.gitea/workflows/ci-python-poetry.yml index a695f76..e913e90 100644 --- a/.gitea/workflows/ci-python-poetry.yml +++ b/.gitea/workflows/ci-python-poetry.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-uv-with-docker.yml b/.gitea/workflows/ci-python-uv-with-docker.yml index 338e877..bca26ce 100644 --- a/.gitea/workflows/ci-python-uv-with-docker.yml +++ b/.gitea/workflows/ci-python-uv-with-docker.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-with-docker.yml b/.gitea/workflows/ci-python-with-docker.yml index 6364a01..756d9d3 100644 --- a/.gitea/workflows/ci-python-with-docker.yml +++ b/.gitea/workflows/ci-python-with-docker.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python.yml b/.gitea/workflows/ci-python.yml index f3eda10..e74a61a 100644 --- a/.gitea/workflows/ci-python.yml +++ b/.gitea/workflows/ci-python.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/create-release.yml b/.gitea/workflows/create-release.yml index 8c3ae42..36269b4 100644 --- a/.gitea/workflows/create-release.yml +++ b/.gitea/workflows/create-release.yml @@ -19,7 +19,7 @@ jobs: clean_changelog: ${{ steps.get_next_version.outputs.clean_changelog }} steps: - name: Check out repository - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 @@ -72,7 +72,7 @@ jobs: needs: get_next_release steps: - name: Check out repository - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/docker-compose-deploy.yml b/.gitea/workflows/docker-compose-deploy.yml index 775ccc0..72e0b88 100644 --- a/.gitea/workflows/docker-compose-deploy.yml +++ b/.gitea/workflows/docker-compose-deploy.yml @@ -35,7 +35,7 @@ jobs: url_title: 'View Logs' - name: "[ON RUNNER] Checkout the repo" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "[ON RUNNER] Set project variables" run: | diff --git a/.gitea/workflows/release-with-tag.yaml b/.gitea/workflows/release-with-tag.yaml index 9cc4d49..b112b12 100644 --- a/.gitea/workflows/release-with-tag.yaml +++ b/.gitea/workflows/release-with-tag.yaml @@ -19,7 +19,7 @@ jobs: clean_changelog: ${{ steps.get_next_version.outputs.clean_changelog }} steps: - name: Check out repository - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 diff --git a/.github/workflows/build-push-attest-docker.yml b/.github/workflows/build-push-attest-docker.yml index 36efb1c..0aee9fc 100644 --- a/.github/workflows/build-push-attest-docker.yml +++ b/.github/workflows/build-push-attest-docker.yml @@ -24,7 +24,7 @@ jobs: success: ${{ steps.set_flag.outputs.success }} steps: - name: Check out the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ inputs.release }} diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml index 454382f..e7d02a8 100644 --- a/.github/workflows/ci-docker.yml +++ b/.github/workflows/ci-docker.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - uses: hadolint/hadolint-action@v3.3.0 diff --git a/.github/workflows/ci-python-poetry-with-docker.yml b/.github/workflows/ci-python-poetry-with-docker.yml index 92b8f9d..000d0f5 100644 --- a/.github/workflows/ci-python-poetry-with-docker.yml +++ b/.github/workflows/ci-python-poetry-with-docker.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - uses: hadolint/hadolint-action@v3.3.0 diff --git a/.github/workflows/ci-python-poetry.yml b/.github/workflows/ci-python-poetry.yml index 8dacb0b..a6f6e60 100644 --- a/.github/workflows/ci-python-poetry.yml +++ b/.github/workflows/ci-python-poetry.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - name: Setup Python diff --git a/.github/workflows/ci-python-with-docker.yml b/.github/workflows/ci-python-with-docker.yml index 1809e4c..c04df18 100644 --- a/.github/workflows/ci-python-with-docker.yml +++ b/.github/workflows/ci-python-with-docker.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - uses: hadolint/hadolint-action@v3.3.0 diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 1fb321e..76caa62 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v5.0.1 + uses: actions/checkout@v6.0.0 with: fetch-depth: 0 - name: Setup Python diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index a7596c8..f81d3fc 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -17,7 +17,7 @@ jobs: release_name: ${{ steps.tag_version.outputs.new_tag }} success: ${{ steps.set_flag.outputs.success }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0