Unverified Commit 14c305ae authored by Matti Picus's avatar Matti Picus Committed by GitHub
Browse files

Merge pull request #517 from radarhere/workflows

Updated actions/checkout to v5
parents 4720fc36 85345674
...@@ -5,9 +5,9 @@ jobs: ...@@ -5,9 +5,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.12'
- run: pip install --upgrade pip wheel setuptools - run: pip install --upgrade pip wheel setuptools
- run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear - run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear
flake8-comprehensions isort mypy pytest pyupgrade safety flake8-comprehensions isort mypy pytest pyupgrade safety
......
...@@ -21,7 +21,7 @@ jobs: ...@@ -21,7 +21,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-latest] # [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest] # [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11"] # ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"] python-version: ["3.12"] # ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"]
# The type of runner that the job will run on # The type of runner that the job will run on
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
...@@ -31,7 +31,7 @@ jobs: ...@@ -31,7 +31,7 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment