From a6647db33d71f0515bc8ef1cf688093e38848aa0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 21:06:07 +0900 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 (#160) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
Release notes

Sourced from actions/checkout's releases.

v4.0.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0

v3.6.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0

v3.5.3

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3

v3.5.2

What's Changed

Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2

v3.5.1

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v4.1.0

v4.0.0

v3.6.0

v3.5.3

v3.5.2

v3.5.1

v3.5.0

v3.4.0

v3.3.0

v3.2.0

v3.1.0

v3.0.2

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fabasoad --- .github/workflows/functional-tests.yml | 2 +- .github/workflows/pre-commit.yml | 7 ++----- .github/workflows/release.yml | 2 +- .github/workflows/update-license.yml | 2 +- .pre-commit-config.yaml | 13 ++++++------- 5 files changed, 11 insertions(+), 15 deletions(-) diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index 4cd43d3..a459011 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -21,7 +21,7 @@ jobs: os: ["ubuntu", "macos", "windows"] runs-on: ${{ matrix.os }}-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Kitten uses: ./ - name: Run script diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index d50d018..f907a89 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -19,15 +19,12 @@ jobs: runs-on: ubuntu-latest container: image: ghcr.io/fabasoad/pre-commit-container:latest - options: --user root steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Update git config - run: | - repo=$(echo "${{ github.repository }}" | cut -d "/" -f 2) - git config --global --add safe.directory "/__w/$repo/$repo" + run: git config --global --add safe.directory "$(pwd)" - name: Run pre-commit on changed files if: ${{ github.event_name == 'pull_request' }} run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6215133..f2f875c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: Create release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Get changelog diff --git a/.github/workflows/update-license.yml b/.github/workflows/update-license.yml index 9ab41be..58ee64a 100644 --- a/.github/workflows/update-license.yml +++ b/.github/workflows/update-license.yml @@ -9,7 +9,7 @@ jobs: run: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: FantasticFiasco/action-update-license-year@v3 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dfd49ce..6afb021 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,6 @@ --- default_install_hook_types: ["pre-commit", "pre-push"] default_stages: ["commit", "push"] -exclude: ^\.gitleaks\.toml$ minimum_pre_commit_version: 2.18.0 repos: # Security @@ -9,13 +8,13 @@ repos: rev: v1.4.0 hooks: - id: detect-secrets - - repo: https://github.com/zricethezav/gitleaks - rev: v8.16.3 + - repo: https://github.com/gitleaks/gitleaks + rev: v8.18.0 hooks: - id: gitleaks # Markdown - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.34.0 + rev: v0.37.0 hooks: - id: markdownlint-fix stages: ["commit"] @@ -27,19 +26,19 @@ repos: stages: ["push"] # GitHub Actions - repo: https://github.com/rhysd/actionlint - rev: v1.6.24 + rev: v1.6.26 hooks: - id: actionlint args: ["-pyflakes="] stages: ["push"] # Other - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.0-alpha.9-for-vscode + rev: v3.0.3 hooks: - id: prettier stages: ["commit"] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-merge-conflict - id: check-json