Skip to content

Commit f523993

Browse files
committed
Fix CI to set token
1 parent 30366bd commit f523993

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/clippy-rustfmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Install Rust Nightly
2222
run: |

.github/workflows/license.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
timeout-minutes: 3
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Check License Header
19-
uses: apache/skywalking-eyes@v0.3.0
19+
uses: apache/skywalking-eyes@v0.6.0

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

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

0 commit comments

Comments
 (0)