We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3b2838 commit da41748Copy full SHA for da41748
2 files changed
.github/workflows/build.yml
@@ -62,6 +62,26 @@ jobs:
62
cd ouds_theme_sosh
63
flutter test
64
65
+ gitleaks:
66
+ name: Gitleaks Secret Scanning
67
+ runs-on: ubuntu-latest
68
+ timeout-minutes: 30
69
+ permissions:
70
+ contents: read
71
+ steps:
72
+ - name: Checkout code
73
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
74
+ with:
75
+ fetch-depth: 0
76
+
77
+ - name: Run Gitleaks Scan
78
+ run: |
79
+ curl -sSfL https://github.com/gitleaks/gitleaks/releases/download/v8.24.3/gitleaks_8.24.3_linux_x64.tar.gz -o /tmp/gitleaks.tar.gz
80
+ tar -xzf /tmp/gitleaks.tar.gz -C /tmp
81
+ sudo mv /tmp/gitleaks /usr/local/bin/gitleaks
82
+ gitleaks detect --source . --config .gitleaks.toml -v --redact
83
+ continue-on-error: true
84
85
build-android:
86
runs-on: ubuntu-latest
87
needs: test
.github/workflows/gitleaks.yml
0 commit comments