File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ updates:
3
3
- package-ecosystem : bundler
4
4
directory : /
5
5
schedule :
6
- interval : daily
6
+ interval : " weekly "
7
7
allow :
8
8
- dependency-type : direct
9
+
10
+ - package-ecosystem : " github-actions"
11
+ directory : " /"
12
+ schedule :
13
+ # Check for updates to GitHub Actions every week
14
+ interval : " weekly"
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
- name : Setup Ruby
16
16
uses : ruby/setup-ruby@v1
17
17
with :
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ name: Deploy Jekyll site to Pages
8
8
9
9
on :
10
10
push :
11
- branches : ["main "]
11
+ branches : ["testing "]
12
12
13
13
# Allows you to run this workflow manually from the Actions tab
14
14
workflow_dispatch :
30
30
runs-on : ubuntu-latest
31
31
steps :
32
32
- name : Checkout
33
- uses : actions/checkout@v3
33
+ uses : actions/checkout@v4
34
34
- name : Setup Ruby
35
35
uses : ruby/setup-ruby@v1
36
36
with :
@@ -39,15 +39,15 @@ jobs:
39
39
cache-version : 0 # Increment this number if you need to re-download cached gems
40
40
- name : Setup Pages
41
41
id : pages
42
- uses : actions/configure-pages@v3
42
+ uses : actions/configure-pages@v5
43
43
- name : Build with Jekyll
44
44
# Outputs to the './_site' directory by default
45
45
run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
46
46
env :
47
47
JEKYLL_ENV : production
48
48
- name : Upload artifact
49
49
# Automatically uploads an artifact from the './_site' directory by default
50
- uses : actions/upload-pages-artifact@v1
50
+ uses : actions/upload-pages-artifact@v3
51
51
52
52
# Deployment job
53
53
deploy :
59
59
steps :
60
60
- name : Deploy to GitHub Pages
61
61
id : deployment
62
- uses : actions/deploy-pages@v2
62
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments