From 5c10c299231e24d1f2b91da5618465aedd93cb16 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Fri, 22 Sep 2023 19:33:01 +0200 Subject: Pin the version of tools used in CI, have dependabot manage their version (#40066) --- .github/workflows/valid-style.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to '.github/workflows/valid-style.yml') diff --git a/.github/workflows/valid-style.yml b/.github/workflows/valid-style.yml index a5f0275492..dc713d6641 100644 --- a/.github/workflows/valid-style.yml +++ b/.github/workflows/valid-style.yml @@ -18,15 +18,15 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # @v2 - - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # @v2 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 with: python-version: '3.11' cache: 'pip' - name: Install Python Packages run: | - pip install --upgrade pip - pip install --upgrade vermin + pip install --upgrade pip setuptools + pip install -r .github/workflows/style/requirements.txt - name: vermin (Spack's Core) run: vermin --backport importlib --backport argparse --violations --backport typing -t=3.6- -vvv lib/spack/spack/ lib/spack/llnl/ bin/ - name: vermin (Repositories) @@ -35,16 +35,17 @@ jobs: style: runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # @v2 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac with: fetch-depth: 0 - - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # @v2 + - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 with: python-version: '3.11' cache: 'pip' - name: Install Python packages run: | - python3 -m pip install --upgrade pip setuptools types-six black==23.1.0 mypy isort clingo flake8 + pip install --upgrade pip setuptools + pip install -r .github/workflows/style/requirements.txt - name: Setup git configuration run: | # Need this for the git tests to succeed. -- cgit v1.2.3-70-g09d2