File tree Expand file tree Collapse file tree 6 files changed +23
-20
lines changed Expand file tree Collapse file tree 6 files changed +23
-20
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 : /
6
+ schedule :
7
+ interval : monthly
8
+ open-pull-requests-limit : 99
Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ jobs:
37
37
os : windows-latest
38
38
arch : x64
39
39
steps :
40
- - uses : actions/checkout@v2
41
- - uses : julia-actions/setup-julia@v1
40
+ - uses : actions/checkout@v4
41
+ - uses : julia-actions/setup-julia@v2
42
42
with :
43
43
version : ${{ matrix.version }}
44
44
arch : ${{ matrix.arch }}
45
- - uses : julia-actions/cache@v1
45
+ - uses : julia-actions/cache@v2
46
46
with :
47
47
cache-packages : " false" # Weird interaction with PyCall settings?
48
48
- uses : julia-actions/julia-buildpkg@v1
61
61
shell : julia --project=. --color=yes {0}
62
62
- uses : julia-actions/julia-runtest@v1
63
63
- uses : julia-actions/julia-processcoverage@v1
64
- - uses : codecov/codecov-action@v2
64
+ - uses : codecov/codecov-action@v4
65
65
with :
66
66
files : lcov.info
67
+ fail_ci_if_error : true
68
+ token : ${{ secrets.CODECOV_TOKEN }}
67
69
- uses : coverallsapp/github-action@master
68
70
with :
69
71
github-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 18
18
name : Documentation
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v2
22
- - uses : julia-actions/setup-julia@v1
21
+ - uses : actions/checkout@v4
22
+ - uses : julia-actions/setup-julia@v2
23
23
with :
24
24
version : ' 1'
25
25
- uses : julia-actions/julia-docdeploy@v1
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@v2
12
+ uses : actions/checkout@v4
13
13
with :
14
14
ref : gh-pages
15
15
- name : Delete preview and history + push changes
Original file line number Diff line number Diff line change 7
7
format :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v4
11
11
- uses : julia-actions/setup-julia@latest
12
12
with :
13
13
version : 1
Original file line number Diff line number Diff line change @@ -34,29 +34,22 @@ jobs:
34
34
- ' '
35
35
- python
36
36
steps :
37
- - uses : actions/checkout@v2
37
+ - uses : actions/checkout@v4
38
38
- name : Install python
39
- uses : actions/setup-python@v2
39
+ uses : actions/setup-python@v5
40
40
with :
41
41
python-version : ' 3.x'
42
42
architecture : ${{ matrix.arch }}
43
43
if : matrix.python
44
44
- run : python -m pip install pot
45
45
if : matrix.python
46
- - uses : julia-actions/setup-julia@v1
46
+ - uses : julia-actions/setup-julia@v2
47
47
with :
48
48
version : ${{ matrix.version }}
49
49
arch : ${{ matrix.arch }}
50
- - uses : actions/cache@v1
51
- env :
52
- cache-name : cache-artifacts
50
+ - uses : julia-actions/cache@v2
53
51
with :
54
- path : ~/.julia/artifacts
55
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
56
- restore-keys : |
57
- ${{ runner.os }}-test-${{ env.cache-name }}-
58
- ${{ runner.os }}-test-
59
- ${{ runner.os }}-
52
+ cache-packages : " false" # Weird interaction with PyCall settings?
60
53
- uses : julia-actions/julia-buildpkg@v1
61
54
env :
62
55
PYTHON : ${{ matrix.python }}
You can’t perform that action at this time.
0 commit comments