Skip to content

Commit 07d0d7c

Browse files
Update actions/checkout action to v5 (#6)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8830df9 commit 07d0d7c

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/deploy-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
container: ghcr.io/cn-writing/cspell
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: CSpell English
2222
run: make spell-check
2323
build:
2424
runs-on: ubuntu-latest
2525
container: ghcr.io/cn-writing/hugo
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
submodules: recursive
3131
- name: Build with Hugo

.github/workflows/deploy-prod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
container: ghcr.io/cn-writing/cspell
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: CSpell English
2626
run: make spell-check
2727
build:
2828
runs-on: ubuntu-latest
2929
container: ghcr.io/cn-writing/hugo
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
submodules: recursive
3535
- name: Build with Hugo
@@ -46,7 +46,7 @@ jobs:
4646
needs: build
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
submodules: recursive
5252
- name: Download the built site

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
container: ghcr.io/cn-writing/cspell
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: CSpell
1616
run: make spell-check
1717
build:
@@ -21,7 +21,7 @@ jobs:
2121
ENV: development
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
submodules: recursive
2727
- name: Build with Hugo

0 commit comments

Comments
 (0)