File tree 3 files changed +41
-16
lines changed
3 files changed +41
-16
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 1
1
name : TagBot
2
+
2
3
on :
3
- issue_comment :
4
+ issue_comment :
4
5
types :
5
6
- created
6
7
workflow_dispatch :
8
+ inputs :
9
+ lookback :
10
+ default : " 3"
11
+
12
+ permissions :
13
+ actions : read
14
+ checks : read
15
+ contents : write
16
+ deployments : read
17
+ issues : read
18
+ discussions : read
19
+ packages : read
20
+ pages : read
21
+ pull-requests : read
22
+ repository-projects : read
23
+ security-events : read
24
+ statuses : read
25
+
7
26
jobs :
8
27
TagBot :
9
28
if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Original file line number Diff line number Diff line change 1
- name : CI
1
+
2
2
on :
3
- - push
4
- - pull_request
3
+ push :
4
+ branches : " master"
5
+ pull_request :
6
+
7
+ concurrency :
8
+ # Skip intermediate builds: always.
9
+ # Cancel intermediate builds: always.
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
5
13
jobs :
6
14
test :
7
15
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -21,21 +29,12 @@ jobs:
21
29
arch :
22
30
- x64
23
31
steps :
24
- - uses : actions/checkout@v2
25
- - uses : julia-actions/setup-julia@v1
32
+ - uses : actions/checkout@v4
33
+ - uses : julia-actions/setup-julia@v2
26
34
with :
27
35
version : ${{ matrix.version }}
28
36
arch : ${{ matrix.arch }}
29
- - uses : actions/cache@v1
30
- env :
31
- cache-name : cache-artifacts
32
- with :
33
- path : ~/.julia/artifacts
34
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
35
- restore-keys : |
36
- ${{ runner.os }}-test-${{ env.cache-name }}-
37
- ${{ runner.os }}-test-
38
- ${{ runner.os }}-
37
+ - uses : julia-actions/cache@v2
39
38
- uses : julia-actions/julia-buildpkg@v1
40
39
- uses : julia-actions/julia-runtest@v1
41
40
with :
You can’t perform that action at this time.
0 commit comments