Some checks failed
Build and Push Docker Images / build-and-push (push) Failing after 28s
17 lines
384 B
YAML
17 lines
384 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@v6
|
|
|
|
- name: Run gitleaks
|
|
run: |
|
|
docker pull zricethezav/gitleaks:latest
|
|
docker run -v /:/ zricethezav/gitleaks:latest detect --source / --verbose --exit-code 1
|