From e7ed2118e6e241fa6d067b100357e6311284323a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 05:08:14 +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/cron-release.yml | 2 +- .github/workflows/cypress.yml | 2 +- .github/workflows/pr-checks.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cron-release.yml b/.github/workflows/cron-release.yml index 7682d45..867666d 100644 --- a/.github/workflows/cron-release.yml +++ b/.github/workflows/cron-release.yml @@ -14,7 +14,7 @@ jobs: contents: write steps: - name: 'Checkout pulp-ui (main)' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: 'main' fetch-depth: 128 diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 5e4f397..77cc1ac 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -22,7 +22,7 @@ jobs: steps: - name: 'Checkout pulp-ui (${{ github.ref }})' - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 'backend setup' run: | diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 10bf0bb..77bba8b 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout pulp-ui (${{ github.ref }})' - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 'Install node 24' uses: actions/setup-node@v6 @@ -61,7 +61,7 @@ jobs: # need to checkout out head, the merge commit won't have any merges in history # also need more than 1 commit, assuming no PR will have more than 128 - name: 'Checkout pulp-ui HEAD' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 128 ref: ${{ github.event.pull_request.head.sha }}