mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
* chore(deps): bump actions/checkout from 6.0.3 to 7.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](df4cb1c069...9c091bb21b)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* ci: set persist-credentials: false on read-only checkouts (zizmor artipacked)
Adds `persist-credentials: false` to the 9 checkout steps flagged by
zizmor's credential-persistence (artipacked) rule on PR #2292. All are
read-only CI/test/quality jobs that never use the git token afterward, so
not persisting it removes the leak surface. Checkouts that push (publish,
pr-autofix, commit-fork-prebuilds, etc.) keep credentials and are untouched.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gergo Magyar <gergomagyar@icloud.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
60 lines
2.1 KiB
YAML
60 lines
2.1 KiB
YAML
name: Gitleaks
|
|
|
|
# Deterministic in-CI secret scanning. Defense-in-depth on top of GitHub's
|
|
# native secret-scanning push protection (which is a repo Settings toggle —
|
|
# see SECURITY.md for the recommended admin action).
|
|
#
|
|
# PR runs scan the diff (fast); main pushes scan full history.
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
gitleaks:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
# Full history needed for the on-push full-history scan; on PRs the
|
|
# action diffs against the base ref so the cost is bounded by the PR.
|
|
fetch-depth: 0
|
|
# Don't bake the token into the cloned .git/config; downstream
|
|
# steps (and Gitleaks itself) don't need it for repo operations.
|
|
persist-credentials: false
|
|
|
|
# gitleaks-action builds `base^..head` for pull_request events; both SHAs
|
|
# must exist locally (fork PRs and shallow checkouts otherwise fail with
|
|
# "unknown revision" — see gitleaks/gitleaks-action#199).
|
|
- name: Fetch PR refs for gitleaks range
|
|
if: github.event_name == 'pull_request'
|
|
env:
|
|
BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
|
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
|
run: |
|
|
git fetch --no-tags origin "$BASE_SHA"
|
|
git fetch --no-tags origin "$HEAD_SHA"
|
|
|
|
# No GITLEAKS_LICENSE secret is required for OSS / public-repo usage.
|
|
# If this repo becomes private, the action will require a license key.
|
|
- name: Gitleaks
|
|
uses: gitleaks/gitleaks-action@e0c47f4f8be36e29cdc102c57e68cb5cbf0e8d1e # v3.0.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITLEAKS_ENABLE_UPLOAD_ARTIFACT: true
|
|
GITLEAKS_ENABLE_SUMMARY: true
|