Skip to content

Commit

Permalink
Bump jinja2 from 3.1.4 to 3.1.5 (#36)
Browse files Browse the repository at this point in the history
* Bump jinja2 from 3.1.4 to 3.1.5

Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](pallets/jinja@3.1.4...3.1.5)

---
updated-dependencies:
- dependency-name: jinja2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update Makefile for Poetry 2.0.0+ compatibility

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ted Cook <teodoro.cook@gmail.com>
  • Loading branch information
dependabot[bot] and teddyphreak authored Jan 21, 2025
1 parent 63c9928 commit b36e9e3
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

defaults:
run:
working-directory: 'nephelaiio.nfs'
working-directory: "nephelaiio.nfs"

jobs:
lint:
Expand All @@ -18,12 +18,12 @@ jobs:
- name: Check out the codebase
uses: actions/checkout@v4
with:
path: 'nephelaiio.nfs'
path: "nephelaiio.nfs"

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

- name: Update ubuntu repositories
run: sudo apt-get update
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

defaults:
run:
working-directory: 'nephelaiio.nfs'
working-directory: "nephelaiio.nfs"

jobs:
molecule:
Expand All @@ -35,12 +35,12 @@ jobs:
- name: Check out the codebase
uses: actions/checkout@v4
with:
path: 'nephelaiio.nfs'
path: "nephelaiio.nfs"

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

- name: Update ubuntu repositories
run: sudo apt-get update
Expand All @@ -63,8 +63,8 @@ jobs:
- name: Run molecule tests.
run: make test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
MOLECULE_DOCKER_IMAGE: ${{ matrix.image.name }}
MOLECULE_DOCKER_COMMAND: ${{ matrix.image.command }}
MOLECULE_SCENARIO: ${{ matrix.scenario.name }}
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

defaults:
run:
working-directory: 'nephelaiio.nfs'
working-directory: "nephelaiio.nfs"

jobs:
release:
Expand All @@ -17,12 +17,12 @@ jobs:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'nephelaiio.nfs'
path: "nephelaiio.nfs"

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

- name: Update ubuntu repositories
run: sudo apt-get update
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
MOLECULE_SCENARIO ?= default
MOLECULE_DOCKER_IMAGE ?= ubuntu2204
GALAXY_API_KEY ?=
GITHUB_REPOSITORY ?= $$(git config --get remote.origin.url | cut -d: -f 2 | cut -d. -f 1)
GITHUB_REPOSITORY ?= $$(git config --get remote.origin.url | cut -d':' -f 2 | cut -d. -f 1)
GITHUB_ORG = $$(echo ${GITHUB_REPOSITORY} | cut -d/ -f 1)
GITHUB_REPO = $$(echo ${GITHUB_REPOSITORY} | cut -d/ -f 2)
REQUIREMENTS = requirements.yml
Expand All @@ -15,6 +15,7 @@ test: lint

poetry:
@type poetry >/dev/null || pip3 install poetry
@poetry self add poetry-plugin-export
@poetry install --no-root

lint: poetry
Expand Down Expand Up @@ -51,4 +52,4 @@ version:
@poetry run molecule --version

debug: version
@poetry export --dev --without-hashes
@poetry export --dev --without-hashes || exit 0
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "nephelaiio.nfs"
version = "0.1.0"
description = ""
authors = ["Ted Cook <teodoro.cook@gmail.com>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.10"
Expand All @@ -11,7 +12,7 @@ python = "^3.10"
ansible-lint = { version = "^24.6.0", markers = "platform_system != 'Windows'" }
ansible = "^10.1.0"
molecule = "^24.6.0"
molecule-plugins = {extras = ["docker"], version = "^23.5.3"}
molecule-plugins = { extras = ["docker"], version = "^23.5.3" }
yamllint = "^1.35.1"
netaddr = "^1.3.0"

Expand Down

0 comments on commit b36e9e3

Please sign in to comment.