From dca7d8c52963d7d5c2018dd0bb4cceb8ff166329 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 03:42:30 +0000 Subject: [PATCH] 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-docker-images.yml | 2 +- .github/workflows/build-util-plugin.yml | 2 +- .github/workflows/dash.yml | 4 ++-- .github/workflows/release-branch.yml | 2 +- .github/workflows/release-tag.yml | 2 +- .github/workflows/update-dependencies.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-docker-images.yml b/.github/workflows/build-docker-images.yml index b67eab6..a4d5294 100644 --- a/.github/workflows/build-docker-images.yml +++ b/.github/workflows/build-docker-images.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Login into the container registry uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 diff --git a/.github/workflows/build-util-plugin.yml b/.github/workflows/build-util-plugin.yml index e80e6d9..3027f34 100644 --- a/.github/workflows/build-util-plugin.yml +++ b/.github/workflows/build-util-plugin.yml @@ -31,7 +31,7 @@ jobs: run: echo '${{ inputs.version }}' | grep -P '^\d+\.\d+\.\d+(\.[a-z0-9]+)?$' - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.GH_BOT_TOKEN != null && secrets.GH_BOT_TOKEN || github.token }} diff --git a/.github/workflows/dash.yml b/.github/workflows/dash.yml index 92026f3..7b1dfc8 100644 --- a/.github/workflows/dash.yml +++ b/.github/workflows/dash.yml @@ -79,12 +79,12 @@ jobs: # and for events triggered by PR creation/updates the ref is 'refs/pull//merge'. # So by default only the master-branch would be considered when requesting license-reviews, but we want the PR's state. # Unless the PR is closed, then we want the master-branch, which allows subsequent license review requests. - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # use default ref 'refs/pull//merge' for PR-events and 'refs/heads/master' for comments if the PR is closed if: github.event.issue.pull_request == '' || github.event.issue.state != 'open' with: submodules: ${{ inputs.submodules }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: "refs/pull/${{ github.event.issue.number }}/merge" submodules: ${{ inputs.submodules }} diff --git a/.github/workflows/release-branch.yml b/.github/workflows/release-branch.yml index 7ff40d2..4776dc0 100644 --- a/.github/workflows/release-branch.yml +++ b/.github/workflows/release-branch.yml @@ -38,7 +38,7 @@ jobs: - name: Validate version format run: echo '${{ inputs.version }}' | grep -P '^\d+\.\d+$' - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ secrets.GH_BOT_TOKEN != null && secrets.GH_BOT_TOKEN || github.token }} diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index c69d365..020dd9b 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -34,7 +34,7 @@ jobs: - name: Validate version format run: echo '${{ inputs.version }}' | grep -P '^\d+\.\d+\.\d+(\.[a-z0-9]+)?$' - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ secrets.GH_BOT_TOKEN != null && secrets.GH_BOT_TOKEN || github.token }} diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index c3ed1ba..44e5e7a 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -13,7 +13,7 @@ jobs: update-DEPENDENCIES: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ secrets.GH_BOT_TOKEN }}