mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 12:50:05 +00:00
Compare commits
No commits in common. "d65c18cf323877499f8b4bcf33333ebb28e232bd" and "92eb3abcdff5895f38187680d04e215dee2deba2" have entirely different histories.
d65c18cf32
...
92eb3abcdf
2 changed files with 13 additions and 5 deletions
5
.github/workflows/check-leaks.yml
vendored
5
.github/workflows/check-leaks.yml
vendored
|
@ -1,7 +1,6 @@
|
||||||
name: "Trufflehog: check for exposed secrets"
|
name: "Trufflehog: check for exposed secrets"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
|
||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
|
@ -19,8 +18,10 @@ jobs:
|
||||||
name: Run trufflehog
|
name: Run trufflehog
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- id: trufflehog
|
- id: trufflehog
|
||||||
|
|
11
.github/workflows/deadnix.yml
vendored
11
.github/workflows/deadnix.yml
vendored
|
@ -1,7 +1,6 @@
|
||||||
name: "Nix: check for unused code"
|
name: "Nix: check for unused code"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
|
||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
|
@ -13,9 +12,17 @@ jobs:
|
||||||
name: Run deadnix
|
name: Run deadnix
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
- name: Install lix
|
- name: Install lix
|
||||||
uses: ./.github/actions/install-lix
|
uses: ./.github/actions/install-lix
|
||||||
|
|
||||||
|
- uses: cachix/cachix-action@v14
|
||||||
|
with:
|
||||||
|
name: deadnix
|
||||||
|
|
||||||
- uses: phucleeuwu/deadnix-action@v1
|
- uses: phucleeuwu/deadnix-action@v1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue