Skip to content

Commit e141a0f

Browse files
committed
Update GitHub Actions to use latest action versions
Upgraded actions/checkout, actions/configure-pages, and actions/upload-pages-artifact to their latest versions. This ensures compatibility, leverages new features, and incorporates any fixes provided in the updated actions.
1 parent adb9911 commit e141a0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/static.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
- name: Setup Pages
35-
uses: actions/configure-pages@v3
35+
uses: actions/configure-pages@5
3636
- name: Setup Hugo
3737
uses: peaceiris/actions-hugo@v2
3838
with:
@@ -41,7 +41,7 @@ jobs:
4141
- name: Build
4242
run: hugo --minify
4343
- name: Upload artifact
44-
uses: actions/upload-pages-artifact@v2
44+
uses: actions/upload-pages-artifact@v3
4545
with:
4646
# Upload Hugo build output directory
4747
path: './public'

0 commit comments

Comments
 (0)