Skip to content

dependency upgrades and related cleanups #656

dependency upgrades and related cleanups

dependency upgrades and related cleanups #656

Workflow file for this run

name: gitleaks
on:
pull_request: {}
push:
branches: [master, v3.dev]
permissions: read-all
env:
ALLOWED_ENDPOINTS: >
api.github.com:443
github.com:443
objects.githubusercontent.com:443
jobs:
scan:
name: gitleaks
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: ${{ env.ALLOWED_ENDPOINTS }}
- name: Checkout
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
with:
fetch-depth: 0
- name: Run gitleaks
uses: gitleaks/gitleaks-action@e6dab246340401bf53eec993b8f05aebe80ac636 # v2.3.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}