From 827c44ba88ccda1d934f156805f4df19381d50c3 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sat, 1 Feb 2025 06:27:42 +0000 Subject: [PATCH] Update Alpine Linux build workflow container - Switch container from alpine:latest to python:3-alpine - Remove Node.js setup step - Simplify workflow configuration --- .github/workflows/build-alpine.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-alpine.yml b/.github/workflows/build-alpine.yml index 5548d5f..c1efe3b 100644 --- a/.github/workflows/build-alpine.yml +++ b/.github/workflows/build-alpine.yml @@ -14,12 +14,9 @@ env: jobs: build-alpine: runs-on: ubuntu-latest - container: alpine:latest + container: python:3-alpine steps: - - name: Setup Node.js - uses: actions/setup-node@v3 - - name: Checkout repository uses: actions/checkout@v3 with: