File tree 3 files changed +11
-14
lines changed
3 files changed +11
-14
lines changed Original file line number Diff line number Diff line change
1
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /" # Location of package manifests
6
+ schedule :
7
+ interval : " weekly"
Original file line number Diff line number Diff line change @@ -49,24 +49,14 @@ jobs:
49
49
runs-on : ubuntu-latest
50
50
permissions : write-all
51
51
steps :
52
- - uses : actions/checkout@v3
53
- - uses : julia-actions/cache@v1
54
- - uses : tlienart/xranklin-build-action@v3.8
52
+ - uses : actions/checkout@v4
53
+ - uses : julia-actions/cache@v2
54
+ - uses : tlienart/xranklin-build-action@v5.0.1
55
55
with :
56
- # NOTE: this is the Xranklin branch the site is built with
57
- BRANCH : " dev"
58
56
# NOTE: this is the base URL prefix (landing page at /$BASE_URL_PREFIX/)
59
57
BASE_URL_PREFIX : " "
60
58
# Whether to deploy the website or not. Can do only for PRs opened
61
59
# from the same repository.
62
60
DEPLOY : ${{ needs.options.outputs.deploy }}
63
61
# Directory where to deploy the website.
64
62
PREVIEW : ${{ needs.options.outputs.preview }}
65
-
66
- # ===================================================================
67
- # DON'T CHANGE THE FOLLOWING UNLESS YOU HAVE GOOD REASONS TO
68
- # >> amounts to build(clear=true) when commit message contains [clear]
69
- CLEAR_CACHE : ${{ contains(github.event.head_commit.message, '[clear]') }}
70
- # >> change the digit at the end if, for some reason, you believe
71
- # that the cache used by the github action has an issue
72
- CACHE_KEY : " franklin-cache"
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Checkout gh-pages branch
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
with :
14
14
ref : gh-pages
15
15
- name : Delete preview and history + push changes
You can’t perform that action at this time.
0 commit comments