Skip to content

Commit 8b0e331

Browse files
Bump actions/checkout from 5 to 6 (#274)
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](actions/checkout@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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6e1f77d commit 8b0e331

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/cron-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: write
1515
steps:
1616
- name: 'Checkout pulp-ui (main)'
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
ref: 'main'
2020
fetch-depth: 128

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: 'Checkout pulp-ui (${{ github.ref }})'
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: 'backend setup'
2828
run: |

.github/workflows/pr-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout pulp-ui (${{ github.ref }})'
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: 'Install node 22'
2121
uses: actions/setup-node@v6
@@ -61,7 +61,7 @@ jobs:
6161
# need to checkout out head, the merge commit won't have any merges in history
6262
# also need more than 1 commit, assuming no PR will have more than 128
6363
- name: 'Checkout pulp-ui HEAD'
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 128
6767
ref: ${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)