Skip to content

Commit

Permalink
CI: get rid of the Node.js warnings
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
barucden committed May 14, 2024
1 parent 74cecf0 commit 34ce213
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ jobs:
arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# LIBLINEAR

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


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

0 comments on commit 34ce213

Please sign in to comment.