Bump gittools/actions from 4.4.1 to 4.4.2 in the actions-minor group … #94
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }}" |