From 8e6fb9295c0a334b9c90ecded99edd81c4f4a807 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 17:04:18 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/build.yml | 10 +++++----- .github/workflows/release.yml | 2 +- .github/workflows/run-ui-tests.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1e64fb..3d1d745 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,7 +38,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Validate wrapper - name: Gradle Wrapper Validation @@ -102,7 +102,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up Java environment for the next steps - name: Setup Java @@ -157,7 +157,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis @@ -191,7 +191,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up Java environment for the next steps - name: Setup Java @@ -240,7 +240,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Remove old release drafts by using the curl request for the available releases with a draft flag - name: Remove Old Release Drafts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d93e25..2fff062 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index b06304d..a48bdfa 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -33,7 +33,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up Java environment for the next steps - name: Setup Java