diff --git a/.github/workflows/connectors.yml b/.github/workflows/connectors.yml index 293a2f553..2e5db23f7 100644 --- a/.github/workflows/connectors.yml +++ b/.github/workflows/connectors.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v3 - name: Set up Python 3.8 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.8 diff --git a/.github/workflows/lint_unit_tests.yml b/.github/workflows/lint_unit_tests.yml index d045d79ee..2f05c5557 100644 --- a/.github/workflows/lint_unit_tests.yml +++ b/.github/workflows/lint_unit_tests.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Python 3.8 if: steps.check.outcome == 'failure' - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.8 diff --git a/README.md b/README.md index ee0631f8a..18cbc5398 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ PipelineWise images are built on each release and available on [Dockerhub](https ``` #### Build your own docker image - + 1. Build an executable docker image that has every required dependency and is isolated from your host system. By default, the image will build with *all* connectors. In order to keep image size small, we strongly recommend you change it to just the connectors you need by supplying the `--build-arg` command: diff --git a/setup.py b/setup.py index 01ad48faa..427fc4db2 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ 'tabulate==0.8.9', 'PyYAML==6.0', 'ansible-core==2.11.8', - 'Jinja2==3.0.2', + 'Jinja2==3.1.2', 'joblib==1.3.2', 'PyMySQL==0.7.11', 'psycopg2-binary==2.9.5',