From 2d3ba85d4704dca2477cd2f76aab786792dd8075 Mon Sep 17 00:00:00 2001 From: juewuy <61367819+juewuy@users.noreply.github.com> Date: Mon, 8 Dec 2025 14:10:18 +0800 Subject: [PATCH] Refactor GitHub Actions workflow for arm64 support Removed setup-go step and updated architecture to arm64. --- .github/workflows/test.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7d6349f..188b293 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -45,11 +45,6 @@ jobs: version: ${{steps.meta.outputs.version}} tags: ${{steps.meta.outputs.tags}} steps: - - - name: setup go - uses: actions/setup-go@v6 - with: - go-version: ${{needs.go.outputs.version}} - name: get meta version id: meta @@ -67,10 +62,9 @@ jobs: matrix: include: # linux - - name: linux-amd64 + - name: linux-arm64 goos: linux - goarch: amd64 - goamd64: v1 + goarch: arm64 fail-fast: false runs-on: ubuntu-latest