From 31a09ce0c8c494ddc488d40e700b17417cf44d0d Mon Sep 17 00:00:00 2001 From: Diego Hurtado Date: Wed, 12 Jun 2024 14:27:02 -0600 Subject: [PATCH] Fix lint workflow --- .github/workflows/lint.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7c77bf5938f..3ef461853cf 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,11 +5,9 @@ on: branches-ignore: - 'release/*' pull_request: -env: - CORE_REPO_SHA: 955c92e91b5cd4bcfb43c39efcef086b040471d2 jobs: - lint-3_11: + lint-3_12: strategy: fail-fast: false # ensures the entire test matrix is run, even if one permutation fails matrix: @@ -36,12 +34,12 @@ jobs: os: [ubuntu-20.04] runs-on: ubuntu-20.04 steps: - - name: Checkout Contrib Repo @ SHA - ${{ github.sha }} + - name: Checkout Core Repo @ SHA - ${{ github.sha }} uses: actions/checkout@v4 - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.11 + python-version: 3.12 - name: Install tox run: pip install tox - name: Cache tox environment