Skip to content

Commit ba21edc

Browse files
committed
Fix site.yml action
1 parent 034f6c6 commit ba21edc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/site.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Install .NET 7.0
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: '7.0.x'
22+
dotnet-version: 7.0.x
2323

2424
- name: Build web site
2525
run: |
2626
dotnet tool install --global lunet --version "0.5.*"
2727
lunet --input-dir site build
2828
2929
- name: Deploy web site
30-
uses: peaceiris/actions-gh-pages@v3
30+
uses: peaceiris/actions-gh-pages@v4
3131
with:
3232
github_token: ${{ secrets.GITHUB_TOKEN }}
3333
publish_dir: ./site/.lunet/build/www

0 commit comments

Comments
 (0)