Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-spencer committed Mar 24, 2024
1 parent 4479d32 commit c0ba3ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
toxenv: "py310"
steps:
- name: "Check out repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- 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 @@ -33,7 +33,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 All @@ -53,9 +53,9 @@ jobs:
runs-on: "ubuntu-18.04"
steps:
- name: "Check out repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- name: "Set up Python"
uses: "actions/setup-python@v2"
uses: "actions/setup-python@v3"
with:
python-version: "3.9"
- name: "Install tox"
Expand Down

0 comments on commit c0ba3ce

Please sign in to comment.