updating ci action and poetry versions

This commit is contained in:
Andy Pack 2022-12-20 21:33:52 +00:00
parent 5d95dccb7a
commit 64b8faaf1f
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -7,7 +7,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ['3.10'] python-version: ['3.10']
poetry-version: [1.1.14] poetry-version: [1.3.1]
node: [18] node: [18]
os: [ubuntu-latest] os: [ubuntu-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
@ -16,13 +16,13 @@ jobs:
# PYTHON # PYTHON
- name: Install Python ${{ matrix.python-version }} - name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
# PYTHON dependency management # PYTHON dependency management
- name: Install Poetry ${{ matrix.poetry-version }} - name: Install Poetry ${{ matrix.poetry-version }}
uses: abatilo/actions-poetry@v2.1.0 uses: abatilo/actions-poetry@v2.1.6
with: with:
poetry-version: ${{ matrix.poetry-version }} poetry-version: ${{ matrix.poetry-version }}
@ -69,15 +69,15 @@ jobs:
# PYTHON # PYTHON
- name: Install Python 3.10 - name: Install Python 3.10
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: '3.10' python-version: '3.10'
# PYTHON for dependency export only, not installing # PYTHON for dependency export only, not installing
- name: Install Poetry 1.1.14 - name: Install Poetry 1.3.1
uses: abatilo/actions-poetry@v2.1.0 uses: abatilo/actions-poetry@v2.1.6
with: with:
poetry-version: 1.1.14 poetry-version: 1.3.1
# PYTHON install dependencies # PYTHON install dependencies
- name: Install Python Dependencies - name: Install Python Dependencies
@ -126,15 +126,15 @@ jobs:
# PYTHON (pinned to 3.9 for gcloud attribute mapping error) # PYTHON (pinned to 3.9 for gcloud attribute mapping error)
- name: Install Python 3.9 - name: Install Python 3.9
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: '3.9' python-version: '3.9'
# PYTHON for dependency export only, not installing # PYTHON for dependency export only, not installing
- name: Install Poetry 1.1.14 - name: Install Poetry 1.3.1
uses: abatilo/actions-poetry@v2.1.0 uses: abatilo/actions-poetry@v2.1.6
with: with:
poetry-version: 1.1.14 poetry-version: 1.3.1
# PYTHON Export Poetry dependencies as requirements.txt # PYTHON Export Poetry dependencies as requirements.txt
- name: Export Poetry Dependencies - name: Export Poetry Dependencies