Skip to content

Commit 5e02b4b

Browse files
committed
Update GitHub workflows to use actions/checkout@v5
1 parent 5443386 commit 5e02b4b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/check-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 1
2424

.github/workflows/check-pr.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

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 1
2222

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
4444
- if: ${{ steps.cache-repo.outputs.cache-hit != 'true' }}
4545
# Not using cached git repo, so clone it (with full history).
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
with:
4848
fetch-depth: 0
4949

@@ -60,7 +60,7 @@ jobs:
6060
# Clone a fresh repo that has valid credentials to push to gh-pages.
6161
# The default fetch-depth:1 is OK for this step.
6262
- name: Clone repo again in order to push
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@v5
6464
with:
6565
ref: 'gh-pages'
6666
path: 'gh-pages'

0 commit comments

Comments
 (0)