Skip to content

Commit

Permalink
Fix CI to set token
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Jan 7, 2025
1 parent 30366bd commit f523993
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clippy-rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust Nightly
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
timeout-minutes: 3

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check License Header
uses: apache/skywalking-eyes@v0.3.0
uses: apache/skywalking-eyes@v0.6.0
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust Stable
run: |
Expand All @@ -27,7 +27,8 @@ jobs:
- name: Test and Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5.1.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true

0 comments on commit f523993

Please sign in to comment.