@@ -13,10 +13,11 @@ concurrency:
1313 cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
1414jobs :
1515 test :
16- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
1717 runs-on : ${{ matrix.os }}
1818 timeout-minutes : 60
19- permissions : # needed to allow julia-actions/cache to proactively delete old caches that it has created
19+ permissions :
20+ # needed to allow julia-actions/cache to proactively delete old caches that it has created
2021 actions : write
2122 contents : read
2223 strategy :
@@ -29,21 +30,18 @@ jobs:
2930 - ubuntu-latest
3031 - macOS-latest
3132 - windows-latest
32- arch :
33- - x64
3433 steps :
3534 - uses : actions/checkout@v6
36- - uses : julia-actions/setup-julia@v2
35+ - uses : julia-actions/setup-julia@v3
3736 with :
3837 version : ${{ matrix.version }}
39- arch : ${{ matrix.arch }}
40- - uses : julia-actions/cache@v2
38+ - uses : julia-actions/cache@v3
4139 - uses : julia-actions/julia-buildpkg@v1
4240 - uses : julia-actions/julia-runtest@v1
4341 env :
4442 JULIA_NUM_THREADS : 4
4543 - uses : julia-actions/julia-processcoverage@v1
46- - uses : codecov/codecov-action@v5
44+ - uses : codecov/codecov-action@v6
4745 with :
4846 files : lcov.info
4947 docs :
@@ -55,10 +53,10 @@ jobs:
5553 statuses : write
5654 steps :
5755 - uses : actions/checkout@v6
58- - uses : julia-actions/setup-julia@v2
56+ - uses : julia-actions/setup-julia@v3
5957 with :
6058 version : " 1"
61- - uses : julia-actions/cache@v2
59+ - uses : julia-actions/cache@v3
6260 - name : Configure doc environment
6361 shell : julia --project=docs --color=yes {0}
6462 run : |
0 commit comments