From 64ca8fe0f833f9b1ee857a512772d25e8cafbea0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 7 Dec 2022 22:45:38 +0900 Subject: [PATCH] Bump zricethezav/gitleaks from 8.15.1 to 8.15.2 (#73) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/zricethezav/gitleaks: v8.15.1 → v8.15.2](https://github.com/zricethezav/gitleaks/compare/v8.15.1...v8.15.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: fabasoad --- .github/workflows/create-release.yml | 7 +++++++ .github/workflows/functional-tests.yml | 4 ++-- .pre-commit-config.yaml | 7 +++++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index f7801a9..fd18a08 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -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: | @@ -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: @@ -42,3 +45,7 @@ jobs: ${{ steps.changelog.outputs.body }} draft: false prerelease: false + - name: Bump tags + uses: fischerscode/tagger@v0 + with: + prefix: v diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index 957fcf8..bd8dc4c 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -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: ./ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 010afcf..ededfd1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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 @@ -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"] @@ -37,4 +39,5 @@ repos: - id: no-commit-to-branch - id: trailing-whitespace ci: - autofix_prs: false + autofix_prs: true + autoupdate_schedule: quarterly