Skip to content

Commit 9d9deb2

Browse files
authored
Merge pull request #137 from cisagov/lineage/skeleton
Lineage pull request for: skeleton
2 parents a1b1d53 + 2a390c4 commit 9d9deb2

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
@@ -89,7 +89,7 @@ jobs:
8989
run: go install ${PACKAGE_URL}@${PACKAGE_VERSION}
9090
- name: Install dependencies
9191
run: |
92-
python -m pip install --upgrade pip
92+
python -m pip install --upgrade pip setuptools wheel
9393
pip install --upgrade --requirement requirements-test.txt
9494
- name: Set up pre-commit hook environments
9595
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

@@ -82,15 +82,15 @@ repos:
8282

8383
# Python hooks
8484
- repo: https://github.com/PyCQA/bandit
85-
rev: 1.7.4
85+
rev: 1.7.5
8686
hooks:
8787
- id: bandit
8888
# Bandit complains about the use of assert() in tests
8989
exclude: molecule/default/tests
9090
args:
9191
- --config=.bandit.yml
9292
- repo: https://github.com/psf/black
93-
rev: 22.12.0
93+
rev: 23.1.0
9494
hooks:
9595
- id: black
9696
- repo: https://github.com/PyCQA/flake8
@@ -104,7 +104,7 @@ repos:
104104
hooks:
105105
- id: isort
106106
- repo: https://github.com/pre-commit/mirrors-mypy
107-
rev: v0.991
107+
rev: v1.1.1
108108
hooks:
109109
- id: mypy
110110
- repo: https://github.com/asottile/pyupgrade
@@ -121,7 +121,7 @@ repos:
121121

122122
# Terraform hooks
123123
- repo: https://github.com/antonbabenko/pre-commit-terraform
124-
rev: v1.77.0
124+
rev: v1.77.1
125125
hooks:
126126
- id: terraform_fmt
127127
- id: terraform_validate

0 commit comments

Comments
 (0)