From c85b1238d464b25a2facb92c34e51f62296d3051 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:51:05 +0000 Subject: [PATCH] Update actions/checkout action to v6 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/codacy.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e682761..1455156 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Login to Docker Hub uses: docker/login-action@v2 @@ -23,7 +23,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Build the Docker image run: | @@ -34,7 +34,7 @@ jobs: runs-on: self-hosted steps: - name: Cloning repo - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index c9e8a5a..489f812 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -35,7 +35,7 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v6 # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI