Skip to content
This repository was archived by the owner on Mar 18, 2026. It is now read-only.

Update dependency python to v3.14.3 #52

Update dependency python to v3.14.3

Update dependency python to v3.14.3 #52

name: test-secret-scan
on: [push, pull_request]
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Checkout Test Data
uses: actions/checkout@v4
with:
repository: trufflesecurity/test_keys
path: test_keys
clean: false
fetch-depth: 1
- name: Scan Test Data
id: scan
uses: ./secret-scan
with:
scan-path: ${{ github.workspace }}/test_keys
fail-on-found: false
- name: Fail if not found
if: steps.scan.outputs.verified-secrets != 4
uses: actions/github-script@v7
with:
script: |
core.setFailed('Incorrect number of secrets found.')