Skip to content

Commit 446a14b

Browse files
committed
CI: get rid of the Node.js warnings
Node.js 16 actions are deprecated. We need to bump the following actions: - julia-actions/setup-julia (to v2) - julia-actions/cache (to v2) - codecov/codecov-action (to v4) Within this commit, a Codecov token has been added to the github secrets.
1 parent 74cecf0 commit 446a14b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,15 @@ jobs:
3333
arch: x86
3434
steps:
3535
- uses: actions/checkout@v4
36-
- uses: julia-actions/setup-julia@v1
36+
- uses: julia-actions/setup-julia@v2
3737
with:
3838
version: ${{ matrix.version }}
3939
arch: ${{ matrix.arch }}
40-
- uses: julia-actions/cache@v1
40+
- uses: julia-actions/cache@v2
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@v3
44+
- uses: codecov/codecov-action@v4
4545
with:
46+
token: ${{ secrets.CODECOV_TOKEN }}
4647
files: lcov.info

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# LIBLINEAR
22

33
[![CI](https://github.com/innerlee/LIBLINEAR.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/innerlee/LIBLINEAR.jl/actions/workflows/ci.yml)
4+
[![codecov](https://codecov.io/gh/JuliaML/LIBLINEAR.jl/graph/badge.svg?token=wNqvTQNWY1)](https://codecov.io/gh/JuliaML/LIBLINEAR.jl)
45

56

67
Julia bindings for [LIBLINEAR](https://www.csie.ntu.edu.tw/~cjlin/liblinear/).

0 commit comments

Comments
 (0)