Skip to content

Commit a101241

Browse files
author
mcdonnnj
committed
2 parents 25394f2 + ea4912c commit a101241

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# These owners will be the default owners for everything in the
44
# repo. Unless a later match takes precedence, these owners will be
55
# requested for review when someone opens a pull request.
6-
* @dav3r @felddy @jsf9k @mcdonnnj
6+
* @dav3r @felddy @jasonodoom @jsf9k @mcdonnnj
77

88
# These folks own any files in the .github directory at the root of
99
# the repository and any of its subdirectories.
10-
/.github/ @dav3r @felddy @jsf9k @mcdonnnj
10+
/.github/ @dav3r @felddy @jasonodoom @jsf9k @mcdonnnj

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
- id: setup-python
2424
uses: actions/setup-python@v4
2525
with:
26-
python-version: "3.10"
26+
python-version: "3.11"
2727
# We need the Go version and Go cache location for the actions/cache step,
2828
# so the Go installation must happen before that.
2929
- id: setup-go
30-
uses: actions/setup-go@v3
30+
uses: actions/setup-go@v4
3131
with:
3232
go-version: "1.19"
3333
- name: Lookup Go cache directory
@@ -93,7 +93,7 @@ jobs:
9393
run: go install ${PACKAGE_URL}@${PACKAGE_VERSION}
9494
- name: Install dependencies
9595
run: |
96-
python -m pip install --upgrade pip
96+
python -m pip install --upgrade pip setuptools wheel
9797
pip install --upgrade --requirement requirements-test.txt
9898
- name: Set up pre-commit hook environments
9999
run: pre-commit install-hooks

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,26 @@ repos:
3737
args:
3838
- --config=.mdl_config.yaml
3939
- repo: https://github.com/pre-commit/mirrors-prettier
40-
rev: v3.0.0-alpha.4
40+
rev: v3.0.0-alpha.6
4141
hooks:
4242
- id: prettier
4343
- repo: https://github.com/adrienverge/yamllint
44-
rev: v1.29.0
44+
rev: v1.30.0
4545
hooks:
4646
- id: yamllint
4747
args:
4848
- --strict
4949

5050
# GitHub Actions hooks
5151
- repo: https://github.com/python-jsonschema/check-jsonschema
52-
rev: 0.21.0
52+
rev: 0.22.0
5353
hooks:
5454
- id: check-github-actions
5555
- id: check-github-workflows
5656

5757
# pre-commit hooks
5858
- repo: https://github.com/pre-commit/pre-commit
59-
rev: v3.0.2
59+
rev: v3.2.1
6060
hooks:
6161
- id: validate_manifest
6262

@@ -83,7 +83,7 @@ repos:
8383
# Python hooks
8484
# Run bandit on the "tests" tree with a configuration
8585
- repo: https://github.com/PyCQA/bandit
86-
rev: 1.7.4
86+
rev: 1.7.5
8787
hooks:
8888
- id: bandit
8989
name: bandit (tests tree)
@@ -98,7 +98,7 @@ repos:
9898
name: bandit (everything else)
9999
exclude: tests
100100
- repo: https://github.com/psf/black
101-
rev: 22.12.0
101+
rev: 23.1.0
102102
hooks:
103103
- id: black
104104
- repo: https://github.com/PyCQA/flake8
@@ -112,7 +112,7 @@ repos:
112112
hooks:
113113
- id: isort
114114
- repo: https://github.com/pre-commit/mirrors-mypy
115-
rev: v0.991
115+
rev: v1.1.1
116116
hooks:
117117
- id: mypy
118118
additional_dependencies:
@@ -133,7 +133,7 @@ repos:
133133

134134
# Terraform hooks
135135
- repo: https://github.com/antonbabenko/pre-commit-terraform
136-
rev: v1.77.0
136+
rev: v1.77.1
137137
hooks:
138138
- id: terraform_fmt
139139
- id: terraform_validate

0 commit comments

Comments
 (0)