From cfcbb2c1c3eda3c4b42c9d29e980a46c02403a1a Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Wed, 2 Jun 2021 12:54:31 -0400 Subject: [PATCH] chore: Use default Apline version from docker-node (#3121) * chore: Use default Apline version from docker-node * chore: Add python version to CI matrix * chore: Use default Alpine image for each version --- .github/workflows/alpine.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index 6e3d58667..f46d8772e 100644 --- a/.github/workflows/alpine.yml +++ b/.github/workflows/alpine.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: node:${{ matrix.node }}-alpine${{ matrix.alpine }} + image: node:${{ matrix.node }}-alpine strategy: fail-fast: false matrix: @@ -22,17 +22,17 @@ jobs: include: - node: 12 - alpine: "3.9" + python: python2 - node: 14 - alpine: "3.10" + python: python3 - node: 15 - alpine: "3.10" + python: python3 - node: 16 - alpine: "3.11" + python: python3 steps: - name: Install Alpine build tools - run: apk add --no-cache python make git gcc g++ + run: apk add --no-cache ${{ matrix.python }} make git gcc g++ - uses: actions/checkout@v2