This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new bebee2600a3 Fix vulnerability-check (#16140)
bebee2600a3 is described below
commit bebee2600a36e0e30e220b4f5de90d47c5afadf6
Author: Haonan <[email protected]>
AuthorDate: Tue Aug 12 10:10:09 2025 +0800
Fix vulnerability-check (#16140)
---
.github/workflows/vulnerability-check.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/workflows/vulnerability-check.yml
b/.github/workflows/vulnerability-check.yml
index d85db02d1f6..e740f5d72ac 100644
--- a/.github/workflows/vulnerability-check.yml
+++ b/.github/workflows/vulnerability-check.yml
@@ -3,6 +3,7 @@ on:
schedule:
# Run at UTC 16:00 every week (CST 00:00 AM)
- cron: '0 16 * * 0'
+ workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
@@ -35,6 +36,9 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-
+ - name: Do Maven install
+ shell: bash
+ run: mvn clean install
- name: Do the dependency-check:check
shell: bash
run: mvn org.owasp:dependency-check-maven:check