diff --git a/.github/workflows/integration-test-alpine.yml b/.github/workflows/integration-test-alpine.yml index 52b85a6c..3deb9d5d 100644 --- a/.github/workflows/integration-test-alpine.yml +++ b/.github/workflows/integration-test-alpine.yml @@ -2,7 +2,7 @@ name: integration test all on: pull_request jobs: integration: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/integration-test-cross.yml b/.github/workflows/integration-test-cross.yml index 1de86c4f..63a1497c 100644 --- a/.github/workflows/integration-test-cross.yml +++ b/.github/workflows/integration-test-cross.yml @@ -45,4 +45,4 @@ jobs: - name: test if: steps.changes.outputs.go == 'true' - run: docker build . --build-arg IMAGE="golang:1-alpine" -f test/integration/integration.dockerfile -t integration && docker run integration + run: docker build . --build-arg IMAGE="golang:1" -f test/integration/integration.dockerfile -t integration && docker run integration