Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-spencer committed Mar 24, 2024
1 parent bb20900 commit fc9dcc1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
with:
submodules: 'true'
- name: "Set up Python"
uses: "actions/setup-python@v2"
uses: "actions/setup-python@v3"
with:
python-version: "3.10"
- name: "install linting tooling"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
strategy:
matrix:
include:
- python-version: "3.8"
toxenv: "py38"
- python-version: "3.9"
toxenv: "py39"
- python-version: "3.10"
toxenv: "py310"
steps:
- name: "Check out repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
with:
submodules: 'true'
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v2"
uses: "actions/setup-python@v3"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install OS packages"
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: "Cache pip packages"
uses: "actions/cache@v2"
uses: "actions/cache@v3"
with:
path: "${{ steps.pip-cache.outputs.dir }}"
key: "${{ runner.os }}-pip-${{ hashFiles('**/base.txt', '**/local.txt') }}"
Expand Down

0 comments on commit fc9dcc1

Please sign in to comment.