From f0742100f3e98ed1541853c0821f5cf4a5171d61 Mon Sep 17 00:00:00 2001 From: Yiftach Cohen Date: Mon, 19 Jan 2026 14:37:17 +0200 Subject: [PATCH 1/2] fix: use armis-cli published action instead of local checkout Update reusable security scan workflow to use the published ArmisSecurity/armis-cli action rather than the local checkout, improving reusability and availability across different contexts. --- .github/workflows/reusable-security-scan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-security-scan.yml b/.github/workflows/reusable-security-scan.yml index 32fbd65..364b3af 100644 --- a/.github/workflows/reusable-security-scan.yml +++ b/.github/workflows/reusable-security-scan.yml @@ -78,7 +78,7 @@ jobs: - name: Run Armis Security Scan id: armis_scan - uses: ./ + uses: ArmisSecurity/armis-cli@v1 with: scan-type: ${{ inputs.scan-type }} scan-target: ${{ inputs.scan-target }} From 07c629b22a53d4edf5f37bcae141a1c0e73eb1ad Mon Sep 17 00:00:00 2001 From: Yiftach Cohen Date: Mon, 19 Jan 2026 14:41:02 +0200 Subject: [PATCH 2/2] fix: use main branch reference for armis-cli action Change action reference from @v1 to @main since there's no v1 major version tag, only specific version tags (v1.0.0-v1.0.5). --- .github/workflows/reusable-security-scan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-security-scan.yml b/.github/workflows/reusable-security-scan.yml index 364b3af..1dfa33c 100644 --- a/.github/workflows/reusable-security-scan.yml +++ b/.github/workflows/reusable-security-scan.yml @@ -78,7 +78,7 @@ jobs: - name: Run Armis Security Scan id: armis_scan - uses: ArmisSecurity/armis-cli@v1 + uses: ArmisSecurity/armis-cli@main with: scan-type: ${{ inputs.scan-type }} scan-target: ${{ inputs.scan-target }}