Skip to content

Gitleaks rules

Gitleaks rules #7

Workflow file for this run

name: Gitleaks rules
on:
schedule:
- cron: "0 1 * * *"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
outdated:
name: Check Gitleaks rules
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
- name: Install OTP and Elixir
uses: erlef/setup-beam@54075bcc5e249e4758d363f27d099f55d843f124 # v1.24.1
with:
otp-version: 28.5
elixir-version: 1.19.5
- name: Check Gitleaks rules
run: |
mix deps.get
mix compile
.github/workflows/outdated.sh
env:
GH_TOKEN: ${{ github.token }}