From 3f7b87a0034c83416b5fe88f8cc6d4d101403af9 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Mon, 6 May 2024 00:32:31 +0700 Subject: [PATCH] fix: back to 61 and install python --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94443ca..0d0f874 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,13 +6,17 @@ jobs: build: runs-on: ubuntu-latest container: - image: quay.io/stackrox-io/apollo-ci:stackrox-test-0.3.69 + image: quay.io/stackrox-io/apollo-ci:stackrox-test-0.3.61 steps: - run: uname -v - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: go-version: 'stable' + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: '3.11' - name: Gather dependencies run: go mod download - name: Run coverage