From dc1755d32a2de789e159b20b5581daec83b83403 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:52:19 +0000 Subject: [PATCH] :arrow_up: Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 f40bca9..4f93224 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,7 +48,7 @@ jobs: swap-storage: true # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set up Java environment for the next steps - name: Setup Java @@ -108,7 +108,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set up Java environment for the next steps - name: Setup Java @@ -159,7 +159,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v6 + uses: actions/checkout@v7 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 @@ -193,7 +193,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set up Java environment for the next steps - name: Setup Java @@ -238,7 +238,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v6 + uses: actions/checkout@v7 # 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 38cb4d9..b8dd34a 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@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index 8ed587e..a47f5e7 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@v6 + uses: actions/checkout@v7 # Set up Java environment for the next steps - name: Setup Java