Skip to content

Commit bbbfae3

Browse files
committed
chore(ci): upgrade Pages actions to latest (checkout v4, configure-pages v5, upload-pages-artifact v3, deploy-pages v4) to resolve artifact v3 deprecation
1 parent 03a14c2 commit bbbfae3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pages-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333
# submodules: true
@@ -42,15 +42,15 @@ jobs:
4242

4343
- name: Setup Pages
4444
id: pages
45-
uses: actions/configure-pages@v3
45+
uses: actions/configure-pages@v5
4646

4747
- name: Build site
4848
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
4949
env:
5050
JEKYLL_ENV: "production"
5151

5252
- name: Upload site artifact
53-
uses: actions/upload-pages-artifact@v1
53+
uses: actions/upload-pages-artifact@v3
5454
with:
5555
path: "_site${{ steps.pages.outputs.base_path }}"
5656

@@ -63,4 +63,4 @@ jobs:
6363
steps:
6464
- name: Deploy to GitHub Pages
6565
id: deployment
66-
uses: actions/deploy-pages@v2
66+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)