Skip to content

Commit

Permalink
Bump zricethezav/gitleaks from 8.15.1 to 8.15.2 (#127)
Browse files Browse the repository at this point in the history
<!--pre-commit.ci start-->
updates:
- [github.com/zricethezav/gitleaks: v8.15.1 →
v8.15.2](gitleaks/gitleaks@v8.15.1...v8.15.2)
<!--pre-commit.ci end-->

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: fabasoad <fabasoad@gmail.com>
  • Loading branch information
pre-commit-ci[bot] and fabasoad authored Dec 7, 2022
1 parent 1e784af commit 51d1fe9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ jobs:
run: |
latest_tag=$(curl --silent "https://api.github.com/repos/${{ github.repository }}/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
echo "tag=${latest_tag}" >> $GITHUB_OUTPUT
shell: sh
- name: Get current release tag
id: current_release
run: echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
shell: bash
- name: Build changelog
id: changelog
run: |
Expand All @@ -30,6 +32,7 @@ jobs:
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
echo "body=${body}" >> $GITHUB_OUTPUT
shell: bash
- name: Create release
uses: softprops/action-gh-release@v1
with:
Expand All @@ -42,3 +45,7 @@ jobs:
${{ steps.changelog.outputs.body }}
draft: false
prerelease: false
- name: Bump tags
uses: fischerscode/tagger@v0
with:
prefix: v
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
.DS_Store
.nyc_output
.vscode
.env
.envrc
.idea
coverage
node_modules
.vscode
7 changes: 5 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
default_install_hook_types: ["pre-commit", "pre-push"]
default_stages: ["commit"]
exclude: ^\.gitleaks\.toml$
minimum_pre_commit_version: 2.18.0
repos:
# Security
- repo: https://github.com/Yelp/detect-secrets
Expand All @@ -9,7 +11,7 @@ repos:
- id: detect-secrets
stages: ["commit", "push"]
- repo: https://github.com/zricethezav/gitleaks
rev: v8.15.1
rev: v8.15.2
hooks:
- id: gitleaks
stages: ["commit", "push"]
Expand Down Expand Up @@ -43,4 +45,5 @@ repos:
- id: no-commit-to-branch
- id: trailing-whitespace
ci:
autofix_prs: false
autofix_prs: true
autoupdate_schedule: quarterly

0 comments on commit 51d1fe9

Please sign in to comment.