Skip to content

Commit db1be2e

Browse files
chore(deps): update actions/checkout action to v6
1 parent 04ccb39 commit db1be2e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Setup Node.js
2222
uses: actions/setup-node@v6

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0
2424
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -62,15 +62,15 @@ jobs:
6262
pull-requests: write
6363
steps:
6464
- name: Checkout PR branch
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666
if: ${{ github.event.action != 'closed' }}
6767
with:
6868
repository: ${{ github.event.pull_request.head.repo.full_name }}
6969
ref: ${{ github.event.pull_request.head.sha }}
7070
persist-credentials: false
7171

7272
- name: Checkout base branch
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
if: ${{ github.event.action == 'closed' }}
7575
with:
7676
repository: ${{ github.event.pull_request.base.repo.full_name }}

0 commit comments

Comments
 (0)