All checks were successful
Build and Push Docker Images / build-and-push (push) Successful in 22s
20 lines
447 B
YAML
20 lines
447 B
YAML
name: Build and Push Docker Images
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run gitleaks
|
|
run: ls -a
|
|
|
|
- name: Run gitleaks
|
|
run: |
|
|
docker pull zricethezav/gitleaks:latest
|
|
docker run -v /:/gitleaks zricethezav/gitleaks:latest detect --source /gitleaks --verbose --exit-code 1
|