Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump urllib3 from 2.0.7 to 2.2.2 #14

Merged
merged 6 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
path: 'nephelaiio.devtools'

- name: Set up python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
path: 'nephelaiio.devtools'

- name: Set up python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
path: 'nephelaiio.devtools'

- name: Set up Python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down
9 changes: 9 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
extends: default

ignore:
- '.cache/'

rules:
comments-indentation: false
comments:
min-spaces-from-content: 1
braces:
max-spaces-inside: 1
level: error
Expand All @@ -10,3 +16,6 @@ rules:
level: error
line-length: disable
truthy: disable
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: true
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ all: install version lint test

install:
@type poetry >/dev/null || pip3 install poetry
@poetry install
@poetry install --no-root

lint: install
poetry run yamllint .
Expand Down
13 changes: 6 additions & 7 deletions meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
---
galaxy_info:
standalone: true
author: nephelaiio
role_name: devtools
author: nephelaiio
description: An Ansible role to install and configure base development tools
license: MIT
min_ansible_version: '2.2'
platforms:
- name: EL
versions:
- all
- name: Archlinux
- 'all'
- name: ArchLinux
versions:
- all
- 'all'
- name: Ubuntu
versions:
- all
- 'all'
- name: Debian
versions:
- all
- 'all'
galaxy_tags:
- devtools

Expand Down
Loading