From 63795befb7e5d98d429c39de82c3ed7daea6ead8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 27 Nov 2025 17:03:30 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .gitea/workflows/cd.yaml | 6 +++--- .gitea/workflows/ci.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/cd.yaml b/.gitea/workflows/cd.yaml index d8dc10f..9edd6c9 100644 --- a/.gitea/workflows/cd.yaml +++ b/.gitea/workflows/cd.yaml @@ -41,7 +41,7 @@ jobs: has_helmfile: ${{ steps.check-helmfile.outputs.exists }} has_k8s: ${{ steps.check-k8s.outputs.exists }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Check if helmfile.yaml exists id: check-helmfile run: | @@ -68,7 +68,7 @@ jobs: needs: detect-service-type if: needs.detect-service-type.outputs.has_k8s == 'true' steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ inputs.deploy_branch }} - uses: ./.gitea/actions/extract-namespace-from-repo-name @@ -119,7 +119,7 @@ jobs: needs.detect-service-type.outputs.has_k8s == 'true' && inputs.skip_helm_deployment != 'true' steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ inputs.deploy_branch }} - uses: ./.gitea/actions/extract-namespace-from-repo-name diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 7a42168..1986755 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: has_helmfile: ${{ steps.check-helmfile.outputs.exists }} has_k8s: ${{ steps.check-k8s.outputs.exists }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Check if helmfile.yaml exists id: check-helmfile run: | @@ -53,7 +53,7 @@ jobs: needs: detect-service-type if: needs.detect-service-type.outputs.has_k8s == 'true' steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.gitea/actions/extract-namespace-from-repo-name id: namespace with: @@ -78,7 +78,7 @@ jobs: needs.detect-service-type.outputs.has_k8s == 'true' && inputs.skip_helm_validation != 'true' steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.gitea/actions/extract-namespace-from-repo-name id: namespace with: -- 2.49.1