Skip to content

Bump next from 15.5.12 to 16.2.2 in /docs/web #25

Bump next from 15.5.12 to 16.2.2 in /docs/web

Bump next from 15.5.12 to 16.2.2 in /docs/web #25

Workflow file for this run

name: secret-scan
on:
pull_request:
push:
branches:
- main
- "codex/**"
jobs:
gitleaks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install gitleaks
run: |
set -euo pipefail
VERSION=8.28.0
curl -sSfL "https://github.com/gitleaks/gitleaks/releases/download/v${VERSION}/gitleaks_${VERSION}_linux_x64.tar.gz" \
| tar -xz
sudo install gitleaks /usr/local/bin/gitleaks
- name: Run gitleaks
run: gitleaks git . --redact --no-banner --exit-code 1 --verbose