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 }}