File tree Expand file tree Collapse file tree 3 files changed +16
-8
lines changed Expand file tree Collapse file tree 3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change
1
+ # Set update schedule for GitHub Actions
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /"
6
+ schedule :
7
+ # Check for updates to GitHub Actions every week
8
+ interval : " weekly"
Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- main
6
- tags : " *"
6
+ tags : [ "*"]
7
7
pull_request :
8
8
workflow_dispatch :
9
9
concurrency :
29
29
arch :
30
30
- x64
31
31
steps :
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
- uses : julia-actions/setup-julia@v1
34
34
with :
35
35
version : ${{ matrix.version }}
@@ -40,13 +40,13 @@ jobs:
40
40
with :
41
41
coverage : " false"
42
42
env :
43
- JULIA_NUM_THREADS : " 2 "
43
+ JULIA_NUM_THREADS : " auto "
44
44
docs :
45
45
name : Documentation
46
46
runs-on : ubuntu-latest
47
47
timeout-minutes : 40
48
48
steps :
49
- - uses : actions/checkout@v3
49
+ - uses : actions/checkout@v4
50
50
- uses : julia-actions/setup-julia@v1
51
51
with :
52
52
version : 1
Original file line number Diff line number Diff line change @@ -3,17 +3,17 @@ name: Format
3
3
on :
4
4
push :
5
5
branches :
6
- - ' main'
7
- - ' release-'
8
- tags : ' * '
6
+ - " main"
7
+ - " release-"
8
+ tags : ["*"]
9
9
pull_request :
10
10
11
11
jobs :
12
12
format :
13
13
name : " Format Check"
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
- uses : julia-actions/setup-julia@v1
18
18
with :
19
19
version : 1
You can’t perform that action at this time.
0 commit comments