Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit cfcbb2c

Browse files
authored
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
1 parent 886319b commit cfcbb2c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/alpine.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
container:
13-
image: node:${{ matrix.node }}-alpine${{ matrix.alpine }}
13+
image: node:${{ matrix.node }}-alpine
1414
strategy:
1515
fail-fast: false
1616
matrix:
@@ -22,17 +22,17 @@ jobs:
2222

2323
include:
2424
- node: 12
25-
alpine: "3.9"
25+
python: python2
2626
- node: 14
27-
alpine: "3.10"
27+
python: python3
2828
- node: 15
29-
alpine: "3.10"
29+
python: python3
3030
- node: 16
31-
alpine: "3.11"
31+
python: python3
3232

3333
steps:
3434
- name: Install Alpine build tools
35-
run: apk add --no-cache python make git gcc g++
35+
run: apk add --no-cache ${{ matrix.python }} make git gcc g++
3636

3737
- uses: actions/checkout@v2
3838

0 commit comments

Comments
 (0)