From e51976dc1f6de60eafbe7108c325815a71db0f64 Mon Sep 17 00:00:00 2001 From: andy Date: Sun, 4 Jul 2021 22:34:08 +0100 Subject: [PATCH] update versions throughout --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a559f32..5a900ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,20 +74,20 @@ jobs: python-version: 3.8 # PYTHON for dependency export only, not installing - - name: Install Poetry 1.1.4 + - name: Install Poetry 1.1.7 uses: abatilo/actions-poetry@v2.1.0 with: - poetry-version: 1.1.4 + poetry-version: 1.1.7 # PYTHON install dependencies - name: Install Python Dependencies run: poetry install # JS setup for jsdoc - - name: Install Node ${{ matrix.node }} + - name: Install Node 16 uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node }} + node-version: 16 # JS setup for jsdoc - name: Install jsdoc @@ -128,20 +128,20 @@ jobs: python-version: 3.8 # PYTHON for dependency export only, not installing - - name: Install Poetry 1.1.4 + - name: Install Poetry 1.1.7 uses: abatilo/actions-poetry@v2.1.0 with: - poetry-version: 1.1.4 + poetry-version: 1.1.7 # PYTHON Export Poetry dependencies as requirements.txt - name: Export Poetry Dependencies run: python admin.py pydepend # JS setup - - name: Install Node 14 + - name: Install Node 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 # JS install from lock.json - name: Install Node Packages