diff --git a/.github/workflows/cron-release.yml b/.github/workflows/cron-release.yml index 17d1691..150564a 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@v5 + uses: actions/checkout@v6 with: ref: 'main' fetch-depth: 128 diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 43a0047..ab77ca2 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@v5 + uses: actions/checkout@v6 - name: 'backend setup' run: | diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index d21d833..7f90fae 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@v5 + uses: actions/checkout@v6 - name: 'Install node 22' 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@v5 + uses: actions/checkout@v6 with: fetch-depth: 128 ref: ${{ github.event.pull_request.head.sha }}