From a4e1fb04919bd4846ed24df9a11df4c89bdb6d27 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 15:03:05 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/code-format-verification.yml | 4 ++-- .github/workflows/continuous-delivery-dockerfile.yml | 4 ++-- .github/workflows/continuous-delivery-maven-java17.yml | 4 ++-- .github/workflows/continuous-delivery-maven-package.yml | 2 +- .github/workflows/continuous-delivery-nuget.yml | 2 +- .github/workflows/conventions.yml | 2 +- .github/workflows/dotnet.yml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/code-format-verification.yml b/.github/workflows/code-format-verification.yml index 441d9f2..2cfe40b 100644 --- a/.github/workflows/code-format-verification.yml +++ b/.github/workflows/code-format-verification.yml @@ -8,7 +8,7 @@ jobs: name: Shell runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run ShellCheck uses: ludeeus/action-shellcheck@master env: @@ -19,7 +19,7 @@ jobs: name: Prettier steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Prettify code diff --git a/.github/workflows/continuous-delivery-dockerfile.yml b/.github/workflows/continuous-delivery-dockerfile.yml index f7289ef..844e7fd 100644 --- a/.github/workflows/continuous-delivery-dockerfile.yml +++ b/.github/workflows/continuous-delivery-dockerfile.yml @@ -28,7 +28,7 @@ jobs: IMAGE_NAME: ${{ github.repository_owner }}/${{ inputs.docker-image-name }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Log in to the Container registry uses: docker/login-action@v3 @@ -69,7 +69,7 @@ jobs: IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/${{ inputs.docker-image-name }} steps: - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Log in to Docker Hub uses: docker/login-action@v3 diff --git a/.github/workflows/continuous-delivery-maven-java17.yml b/.github/workflows/continuous-delivery-maven-java17.yml index 2c22469..6a3ad51 100644 --- a/.github/workflows/continuous-delivery-maven-java17.yml +++ b/.github/workflows/continuous-delivery-maven-java17.yml @@ -100,7 +100,7 @@ jobs: packages: read steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -216,7 +216,7 @@ jobs: IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/${{ inputs.docker-image-name }} steps: - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Download package artifacts uses: actions/download-artifact@v4 diff --git a/.github/workflows/continuous-delivery-maven-package.yml b/.github/workflows/continuous-delivery-maven-package.yml index 1077dc7..d5f5d5c 100644 --- a/.github/workflows/continuous-delivery-maven-package.yml +++ b/.github/workflows/continuous-delivery-maven-package.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Java uses: actions/setup-java@v4 diff --git a/.github/workflows/continuous-delivery-nuget.yml b/.github/workflows/continuous-delivery-nuget.yml index f8a022b..76fecca 100644 --- a/.github/workflows/continuous-delivery-nuget.yml +++ b/.github/workflows/continuous-delivery-nuget.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup .NET diff --git a/.github/workflows/conventions.yml b/.github/workflows/conventions.yml index 3ecb730..ecf900f 100644 --- a/.github/workflows/conventions.yml +++ b/.github/workflows/conventions.yml @@ -9,7 +9,7 @@ jobs: name: Conventional Commits runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 81e375a..8ff813f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -11,7 +11,7 @@ jobs: FROMDOPPLER_GITHUB_PACKAGES_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup .NET