Skip to content

Bump the actions-minor group with 2 updates #105

Bump the actions-minor group with 2 updates

Bump the actions-minor group with 2 updates #105

Workflow file for this run

name: "Test: Infisical secrets check"
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Test Infisical secrets check action
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Run Infisical secrets check
id: infisical
uses: ./
with:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ADD_COMMENT: ${{ github.event_name == 'pull_request' }}
- name: Print output
if: always()
run: |
echo "secrets-leaked: ${{ steps.infisical.outputs.secrets-leaked }}"