From 3c72f4b66644bfb1790ac55c50247c541766ba10 Mon Sep 17 00:00:00 2001 From: Zhiwei Liang <121905282+zliang-akamai@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:31:00 -0400 Subject: [PATCH] Fix e2e workflow (#70) --- .github/workflows/e2e-test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 57fa9c1..33c9385 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -17,23 +17,19 @@ jobs: steps: - name: checkout repo uses: actions/checkout@v4 - if: ${{ inputs.commit_sha != '' }} with: ref: ${{ inputs.commit_sha }} fetch-depth: 0 submodules: 'recursive' - - name: update packages - run: sudo apt-get update -y - - name: setup python 3 uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' - name: install or update Python build system run: python3 -m pip install -U wheel setuptools certifi pip - + - name: install test dependencies run: make test-deps