From 526e4f736913df28c37ce4985f2dc9a1360fa77d Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Wed, 14 Aug 2024 14:13:43 -0400 Subject: [PATCH] fix flake8 CI --- .github/workflows/flake8.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index c622132..8683b32 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -5,20 +5,20 @@ on: jobs: flake8_py3: - runs-on: ubuntu-jammy + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 name: setup Python with: - python-version: 3.10 - - name: Checkout pywis-pubsub + python-version: '3.10' + - name: Checkout wis2-gdc uses: actions/checkout@master - name: Install flake8 run: pip3 install flake8 - name: Run flake8 uses: suo/flake8-github-action@releases/v1 with: - checkName: 'flake8_py3' # NOTE: this needs to be the same as the job name + checkName: 'flake8_py3' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}