File tree Expand file tree Collapse file tree 3 files changed +36
-25
lines changed Expand file tree Collapse file tree 3 files changed +36
-25
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 : " monthly"
Original file line number Diff line number Diff line change @@ -13,34 +13,37 @@ jobs:
13
13
fail-fast : false
14
14
matrix :
15
15
version :
16
- - " 1" # Latest Release
17
- - ' 1.0 ' # LTS
18
- # We don't do Nightly because the false failures are too annoying on GHA
16
+ - " 1.6 "
17
+ - " 1.10 "
18
+ - " 1 "
19
19
os :
20
20
- ubuntu-latest
21
- - windows-latest
22
21
arch :
23
22
- x64
24
- - x86
23
+ include :
24
+ - os : windows-latest
25
+ version : " 1"
26
+ arch : x64
27
+ - os : macOS-latest
28
+ version : " 1"
29
+ arch : x64
30
+ - os : ubuntu-latest
31
+ version : " 1"
32
+ arch : x86
25
33
steps :
26
- - uses : actions/checkout@v2
27
- - uses : julia-actions/setup-julia@v1
34
+ - uses : actions/checkout@v4
35
+ - uses : julia-actions/setup-julia@v2
28
36
with :
29
37
version : ${{ matrix.version }}
30
38
arch : ${{ matrix.arch }}
31
- - uses : actions/cache@v1
32
- env :
33
- cache-name : cache-artifacts
34
- with :
35
- path : ~/.julia/artifacts
36
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
37
- restore-keys : |
38
- ${{ runner.os }}-test-${{ env.cache-name }}-
39
- ${{ runner.os }}-test-
40
- ${{ runner.os }}-
41
- - uses : julia-actions/julia-buildpkg@latest
42
- - uses : julia-actions/julia-runtest@latest
39
+ - uses : julia-actions/cache@v2
40
+ # - uses: julia-actions/julia-buildpkg@latest
41
+ - uses : julia-actions/julia-runtest@v1
43
42
- uses : julia-actions/julia-processcoverage@v1
44
- - uses : codecov/codecov-action@v1
43
+ - uses : codecov/codecov-action@v5
45
44
with :
46
- file : lcov.info
45
+ files : lcov.info
46
+ plugins : noop
47
+ disable_search : true
48
+ env :
49
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- issue_comment : # THIS BIT IS NEW
3
+ issue_comment :
4
4
types :
5
5
- created
6
6
workflow_dispatch :
7
+ inputs :
8
+ lookback :
9
+ default : " 3"
7
10
jobs :
8
11
TagBot :
9
- # THIS 'if' LINE IS NEW
10
12
if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11
- # NOTHING BELOW HAS CHANGED
12
13
runs-on : ubuntu-latest
13
14
steps :
14
15
- uses : JuliaRegistries/TagBot@v1
15
16
with :
16
17
token : ${{ secrets.GITHUB_TOKEN }}
17
- ssh : ${{ secrets.DOCUMENTER_KEY }}
18
+ # ssh: ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments