Skip to content

Commit 645d75a

Browse files
authored
Bump gitleaks from 8.21.2 to 8.22.0 (#119)
1 parent d25340c commit 645d75a

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

.github/workflows/functional-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: ["ubuntu-latest", "macos-13", "macos-latest"]
22-
version: ["0.17.0", "0.18.0", "0.19.0", "0.20.0", "0.20.1"]
22+
version: ["0.21.0", "0.20.1", "0.20.0", "0.19.0", "0.18.0"]
2323
exclude:
24-
- os: "macos-latest"
25-
version: "0.17.0"
2624
- os: "macos-latest"
2725
version: "0.18.0"
2826
- os: "macos-latest"
@@ -31,6 +29,8 @@ jobs:
3129
version: "0.20.0"
3230
- os: "macos-13"
3331
version: "0.20.1"
32+
- os: "macos-13"
33+
version: "0.21.0"
3434
runs-on: ${{ matrix.os }}
3535
steps:
3636
- name: Checkout ${{ github.repository }}

.pre-commit-config.yaml

+13-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ repos:
1313
types: [text]
1414
args: []
1515
# https://github.com/prettier/prettier/releases
16-
additional_dependencies: ["prettier@3.3.3"]
16+
additional_dependencies: ["prettier@3.4.2"]
1717
stages: ["pre-commit"]
1818
# Security
1919
- repo: https://github.com/Yelp/detect-secrets
2020
rev: v1.5.0
2121
hooks:
2222
- id: detect-secrets
2323
- repo: https://github.com/gitleaks/gitleaks
24-
rev: v8.21.2
24+
rev: v8.22.0
2525
hooks:
2626
- id: gitleaks
2727
- repo: https://github.com/fabasoad/pre-commit-grype
@@ -38,6 +38,13 @@ repos:
3838
hooks:
3939
- id: markdownlint-fix
4040
stages: ["pre-commit"]
41+
# Shell
42+
- repo: https://github.com/openstack/bashate
43+
rev: 2.1.1
44+
hooks:
45+
- id: bashate
46+
args: ["-i", "E003,E006"]
47+
stages: ["pre-commit"]
4148
# Yaml
4249
- repo: https://github.com/adrienverge/yamllint
4350
rev: v1.35.1
@@ -55,6 +62,10 @@ repos:
5562
- repo: https://github.com/pre-commit/pre-commit-hooks
5663
rev: v5.0.0
5764
hooks:
65+
- id: check-executables-have-shebangs
66+
stages: ["pre-commit"]
67+
- id: check-shebang-scripts-are-executable
68+
stages: ["pre-commit"]
5869
- id: check-merge-conflict
5970
- id: check-json
6071
stages: ["pre-push"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ None
2929
<!-- prettier-ignore-start -->
3030
| Name | Required | Description | Default | Possible values |
3131
|---------|----------|-----------------------------------------------------------------------------------|----------|--------------------------|
32-
| version | No | Mint version that can be found [here](https://github.com/mint-lang/mint/releases) | `0.20.1` | `0.19.0`, `0.18.0`, etc. |
32+
| version | No | Mint version that can be found [here](https://github.com/mint-lang/mint/releases) | `0.21.0` | `0.19.0`, `0.20.1`, etc. |
3333
<!-- prettier-ignore-end -->
3434

3535
## Example usage

action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
version:
1010
description: "Mint version"
1111
required: false
12-
default: "0.20.1"
12+
default: "0.21.0"
1313
runs:
1414
using: "composite"
1515
steps:
@@ -29,7 +29,7 @@ runs:
2929
working-directory: "${{ github.action_path }}/src"
3030
- name: Download
3131
if: ${{ steps.info.outputs.mint-installed == 'false' }}
32-
uses: robinraju/release-downloader@v1.11
32+
uses: robinraju/release-downloader@v1
3333
with:
3434
repository: mint-lang/mint
3535
latest: false

0 commit comments

Comments
 (0)