Skip to content

Commit 8469c23

Browse files
authored
Update CI.yml
This change should accommodate the node.jl upgrade described in https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12 and obviate the warnings from CI runs.
1 parent 4f5dd6d commit 8469c23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
arch:
2424
- x64
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
- uses: julia-actions/setup-julia@v1
2828
with:
2929
version: ${{ matrix.version }}
3030
arch: ${{ matrix.arch }}
31-
- uses: actions/cache@v1
31+
- uses: actions/cache@v3
3232
env:
3333
cache-name: cache-artifacts
3434
with:
@@ -41,6 +41,6 @@ jobs:
4141
- uses: julia-actions/julia-buildpkg@v1
4242
- uses: julia-actions/julia-runtest@v1
4343
- uses: julia-actions/julia-processcoverage@v1
44-
- uses: codecov/codecov-action@v1
44+
- uses: codecov/codecov-action@v3
4545
with:
46-
file: lcov.info
46+
files: lcov.info

0 commit comments

Comments
 (0)