Uploading content of AI SDK Tutorials #5
Workflow file for this run
This file contains 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
# SPDX-FileCopyrightText": "Copyright (C) Siemens AG 2021. All Rights Reserved." | |
# | |
# SPDX-License-Identifier: MIT | |
name: Gitleaks Scan | |
on: [push, pull_request] | |
jobs: | |
gitleaks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run Gitleaks | |
uses: zricethezav/gitleaks-action@v1.3.0 | |
with: | |
args: "--path=." | |