From ad736a29d1cee446322976db89ab528d5ba50d3a Mon Sep 17 00:00:00 2001 From: Dalton Bohning Date: Mon, 16 Dec 2024 07:07:09 -0800 Subject: [PATCH] DAOS-16873 cq: remove workflows/version-checks.yml (#15601) Remove workflows/version-checks.yml now that dependabot checks this. Signed-off-by: Dalton Bohning --- .github/workflows/version-checks.yml | 35 ---------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/version-checks.yml diff --git a/.github/workflows/version-checks.yml b/.github/workflows/version-checks.yml deleted file mode 100644 index 6f9d4cc7327..00000000000 --- a/.github/workflows/version-checks.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Version checking - -on: - push: - branches: - - master - pull_request: - paths: - - 'utils/cq/requirements.txt' - - '.github/workflows/version-checks.yml' - -permissions: {} - -jobs: - upgrade-check: - name: Check for updates - runs-on: ubuntu-24.04 - strategy: - fail-fast: false - matrix: - package: [pylint, yamllint, isort, codespell] - steps: - - name: Checkout code - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: '3.12' - - name: Install extra python packages - run: python3 -m pip install --requirement utils/cq/requirements.txt - - name: Check ${{ matrix.package }} version - run: python -m ${{ matrix.package }} --version | tee -a version-pre - - name: Upgrade - run: pip install --upgrade ${{ matrix.package }} - - name: Check ${{ matrix.package }} for version - run: python -m ${{ matrix.package }} --version | diff version-pre -