Skip to content

Commit a7c279c

Browse files
committed
fix: fix clippy in CI again
Strangely the last fix for the clippy-run in the CI, was successful before the merge, but failed after the merge. This time the clippy-verison in the CI was updated to the newest version to fix the problem. Signed-off-by: Tobias Anker <tobias.anker@kitsunemimi.moe>
1 parent 7c49ebc commit a7c279c

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/build_test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
name: Install dependencies
3737
run: |
3838
sudo apt-get update
39-
sudo apt-get install -y protobuf-compiler
39+
sudo apt-get install -y protobuf-compiler gcc ssh curl pkg-config libssl-dev libsqlite3-dev
40+
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y
4041
-
4142
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4243
-

.secrets.baseline

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@
9090
{
9191
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
9292
},
93+
{
94+
"path": "detect_secrets.filters.common.is_baseline_file",
95+
"filename": ".secrets.baseline"
96+
},
9397
{
9498
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
9599
"min_level": 2
@@ -129,7 +133,7 @@
129133
"filename": ".github/workflows/build_test.yml",
130134
"hashed_secret": "f8c9ca2243c245951407ec16a1918a5ec6a070b4",
131135
"is_verified": false,
132-
"line_number": 409
136+
"line_number": 414
133137
}
134138
],
135139
".vscode/launch.json": [
@@ -590,5 +594,5 @@
590594
}
591595
]
592596
},
593-
"generated_at": "2026-03-24T11:34:22Z"
597+
"generated_at": "2026-04-23T16:41:57Z"
594598
}

Earthfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ secret-scan:
5757
ENV PATH="/code/check_env/bin:$PATH"
5858
RUN pip3 install detect-secrets
5959
COPY . .
60+
COPY .secrets.baseline .secrets.baseline
6061
RUN git ls-files -z | xargs -0 detect-secrets-hook --baseline .secrets.baseline
6162

6263

0 commit comments

Comments
 (0)