From e1b31ad0e3614b46f35f0748c81a02318938e97e Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Mon, 31 May 2021 14:21:11 -0400 Subject: [PATCH 1/3] chore: Use default Apline version from docker-node --- .github/workflows/alpine.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index 6e3d58667..fda50cfce 100644 --- a/.github/workflows/alpine.yml +++ b/.github/workflows/alpine.yml @@ -22,13 +22,13 @@ jobs: include: - node: 12 - alpine: "3.9" + alpine: "3.11" - node: 14 - alpine: "3.10" + alpine: "3.11" - node: 15 - alpine: "3.10" - - node: 16 alpine: "3.11" + - node: 16 + alpine: "3.13" steps: - name: Install Alpine build tools From 7e6983312f1e45c81ac0a4c9d77c9e2f0c120d9b Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Mon, 31 May 2021 14:27:53 -0400 Subject: [PATCH 2/3] chore: Add python version to CI matrix --- .github/workflows/alpine.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index fda50cfce..e9b47185e 100644 --- a/.github/workflows/alpine.yml +++ b/.github/workflows/alpine.yml @@ -23,16 +23,20 @@ jobs: include: - node: 12 alpine: "3.11" + python: python2 - node: 14 alpine: "3.11" + python: python3 - node: 15 alpine: "3.11" + python: python3 - node: 16 alpine: "3.13" + 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 From 669540a91402f43d2174d0da98e45606113b5618 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 1 Jun 2021 15:48:44 -0400 Subject: [PATCH 3/3] chore: Use default Alpine image for each version --- .github/workflows/alpine.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index e9b47185e..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,16 +22,12 @@ jobs: include: - node: 12 - alpine: "3.11" python: python2 - node: 14 - alpine: "3.11" python: python3 - node: 15 - alpine: "3.11" python: python3 - node: 16 - alpine: "3.13" python: python3 steps: