File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Dependabot
2+
3+ version : 2
4+
5+ enable-beta-ecosystems : true
6+
7+ updates :
8+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
9+ - package-ecosystem : " github-actions"
10+ directory : " /"
11+ schedule :
12+ interval : " weekly"
13+ - package-ecosystem : " julia" # See documentation for possible values
14+ # # To get started with Dependabot version updates, you'll need to specify which
15+ # package ecosystems to update and where the package manifests are located.
16+ # Please see the documentation for all configuration options:
17+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
18+ directory : " /" # Location of package manifests
19+ schedule :
20+ interval : " weekly"
Original file line number Diff line number Diff line change 11name : TagBot
2+
23on :
34 issue_comment :
45 types :
56 - created
67 workflow_dispatch :
8+
79jobs :
810 TagBot :
911 if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Original file line number Diff line number Diff line change 11name : CI
2+
23on :
34 pull_request :
45 branches :
78 branches :
89 - master
910 tags : ' *'
11+
1012permissions :
1113 actions : write
1214 contents : read
15+
1316jobs :
1417 test :
1518 name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -21,16 +24,16 @@ jobs:
2124 os : [ubuntu-latest, windows-latest]
2225 arch : [x64]
2326 steps :
24- - uses : actions/checkout@v4
25- - uses : julia-actions/setup-julia@v2
27+ - uses : actions/checkout@v6
28+ - uses : julia-actions/setup-julia@v3
2629 with :
2730 version : ${{ matrix.version }}
2831 arch : ${{ matrix.arch }}
29- - uses : julia-actions/cache@v1
32+ - uses : julia-actions/cache@v3
3033 - uses : julia-actions/julia-buildpkg@v1
3134 - uses : julia-actions/julia-runtest@v1
3235 - uses : julia-actions/julia-processcoverage@v1
33- - uses : codecov/codecov-action@v5
36+ - uses : codecov/codecov-action@v6
3437 with :
3538 files : lcov.info
3639 token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments