File tree Expand file tree Collapse file tree 3 files changed +17
-8
lines changed
Expand file tree Collapse file tree 3 files changed +17
-8
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 @@ -16,14 +16,14 @@ jobs:
1616 os : [ubuntu-latest, macOS-latest]
1717
1818 steps :
19- - uses : actions/checkout@v2
20- - uses : julia-actions/setup-julia@latest
19+ - uses : actions/checkout@v5
20+ - uses : julia-actions/setup-julia@2
2121 with :
2222 version : ${{ matrix.julia-version }}
2323 - uses : julia-actions/julia-buildpkg@latest
2424 - uses : julia-actions/julia-runtest@latest
2525 - uses : julia-actions/julia-processcoverage@v1
26- - uses : codecov/codecov-action@v1
26+ - uses : codecov/codecov-action@v5
2727 if : ${{ matrix.julia-version == '1' && matrix.os == 'ubuntu-latest' }}
2828 with :
29- file : lcov.info
29+ files : lcov.info
Original file line number Diff line number Diff line change 77 CompatHelper :
88 runs-on : ubuntu-latest
99 steps :
10- - name : Pkg.add("CompatHelper")
11- run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
12- - name : CompatHelper.main()
10+ - name : Install CompatHelper
11+ shell : julia --color=yes {0}
12+ run : using Pkg; Pkg.add("CompatHelper")
13+ - name : Run CompatHelper
1314 env :
1415 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15- run : julia -e 'using CompatHelper; CompatHelper.main()'
16+ shell : julia --color=yes {0}
17+ run : using CompatHelper; CompatHelper.main()
You can’t perform that action at this time.
0 commit comments