Skip to content

Commit

Permalink
Bump versions of github actions.
Browse files Browse the repository at this point in the history
This updates actions/checkout, actions/setup-python, actions/setup-node,
and actions/cache to their most recent releases.
  • Loading branch information
davidt committed Jan 24, 2023
1 parent d4ab608 commit bf67109
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
django-version: '3.1'

steps:
- 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: Set up Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '16'

Expand All @@ -51,7 +51,7 @@ jobs:
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
Expand Down

0 comments on commit bf67109

Please sign in to comment.