File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,14 @@ concurrency:
27
27
cancel-in-progress : true
28
28
29
29
jobs :
30
- # Build job
31
30
build :
32
31
runs-on : ubuntu-latest
33
32
defaults :
34
33
run :
35
34
working-directory : docs
36
35
steps :
37
36
- name : Checkout
38
- uses : actions/checkout@v3
37
+ uses : actions/checkout@v4
39
38
- name : Setup Ruby
40
39
uses : ruby/setup-ruby@v1
41
40
with :
@@ -45,19 +44,17 @@ jobs:
45
44
working-directory : ' ${{ github.workspace }}/docs' # Use docs/ directory
46
45
- name : Setup Pages
47
46
id : pages
48
- uses : actions/configure-pages@v3
47
+ uses : actions/configure-pages@v4
49
48
- name : Build with Jekyll
50
49
# Outputs to the './_site' directory by default
51
50
run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
52
51
env :
53
52
JEKYLL_ENV : production
54
53
- name : Upload artifact
55
54
# Automatically uploads an artifact from the './_site' directory by default
56
- uses : actions/upload-pages-artifact@v1
55
+ uses : actions/upload-pages-artifact@v3
57
56
with :
58
57
path : " docs/_site/"
59
-
60
- # Deployment job
61
58
deploy :
62
59
environment :
63
60
name : github-pages
67
64
steps :
68
65
- name : Deploy to GitHub Pages
69
66
id : deployment
70
- uses : actions/deploy-pages@v2
67
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments