From 842cb2baaf30ef80a654880bb01450730c054dd5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 03:07:23 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-docker-images.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 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-docker-images.yml b/.github/workflows/build-docker-images.yml index c1685ba..78cd5f8 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@v5 + uses: actions/checkout@v6 - name: Login into the container registry uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0 diff --git a/.github/workflows/dash.yml b/.github/workflows/dash.yml index 0003b8c..8854ba2 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@v5 + - uses: actions/checkout@v6 # 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@v5 + - uses: actions/checkout@v6 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 1334000..7ff40d2 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@v5 + - uses: actions/checkout@v6 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 c2d9a43..c69d365 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@v5 + - uses: actions/checkout@v6 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 138d311..d9e3a3b 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@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.GH_BOT_TOKEN }}