Skip to content

Commit

Permalink
Bump zricethezav/gitleaks from 8.15.1 to 8.15.2 (#73)
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 <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and fabasoad authored Dec 7, 2022
1 parent 7d29e40 commit 64ca8fe
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 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
4 changes: 2 additions & 2 deletions .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
os: ['ubuntu', 'windows', 'macos']
version: ['0.1.dev0', '0.1.dev1']
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- uses: ./
Expand Down
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 @@ -37,4 +39,5 @@ repos:
- id: no-commit-to-branch
- id: trailing-whitespace
ci:
autofix_prs: false
autofix_prs: true
autoupdate_schedule: quarterly

0 comments on commit 64ca8fe

Please sign in to comment.