Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
artis3n committed Jun 26, 2022
1 parent badd142 commit e1d1f0d
Show file tree
Hide file tree
Showing 7 changed files with 122 additions and 214 deletions.
3 changes: 1 addition & 2 deletions .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ exclude_paths:
- .github/
- .idea/
- .vscode/
- ../../../../../.ansible/

skip_list:
- line-length
- yaml[line-length]
- package-latest
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pip3 install --user -r requirements.txt",
"postCreateCommand": "make install",
"postCreateCommand": "sudo apt update && sudo apt full-upgrade -y; make install",

// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Set up Python 3.x
id: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v4.0.0
with:
python-version: "3.10"
# Once supported in https://github.com/actions/setup-python/pull/281
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Set up Python 3.x
id: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v4.0.0
with:
python-version: "3.10"
# Once supported in https://github.com/actions/setup-python/pull/281
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

- name: Set up Python 3.x
id: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v4.0.0
with:
python-version: "3.10"
# Once supported in https://github.com/actions/setup-python/pull/281
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:

- name: Set up Python 3.x
id: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v4.0.0
with:
python-version: "3.10"
# Once supported in https://github.com/actions/setup-python/pull/281
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v4.3.0
hooks:
- id: check-yaml
# https://github.com/pre-commit/pre-commit-hooks/issues/273
Expand All @@ -20,7 +20,7 @@ repos:
- id: shellcheck

- repo: https://github.com/ansible/ansible-lint
rev: v6.1.0
rev: v6.3.0
hooks:
- id: ansible-lint
files: \.(yaml|yml)$
Loading

0 comments on commit e1d1f0d

Please sign in to comment.