File tree Expand file tree Collapse file tree 2 files changed +7
-50
lines changed Expand file tree Collapse file tree 2 files changed +7
-50
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ concurrency:
88 group : ${{ github.workflow }}-${{ github.ref }}
99 cancel-in-progress : true
1010
11+ # Needed to allow julia-actions/cache to delete old caches that it has created
12+ permissions :
13+ actions : write
14+ contents : read
15+
1116jobs :
1217 test :
1318 name : ci ${{ matrix.version }} - ${{ matrix.os }}
@@ -28,20 +33,11 @@ jobs:
2833 with :
2934 version : ${{ matrix.version }}
3035 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 }}-
36+ - uses : julia-actions/cache@v2
4137 - uses : julia-actions/julia-buildpkg@v1
4238 - uses : julia-actions/julia-runtest@v1
4339 - uses : julia-actions/julia-processcoverage@v1
44- - uses : codecov/codecov-action@v1
40+ - uses : codecov/codecov-action@v5
4541 with :
4642 file : lcov.info
4743 token : ${{secrets.CODECOV_TOKEN}}
You can’t perform that action at this time.
0 commit comments