Skip to content

Commit bc8c009

Browse files
committed
Update GitHub actions
1 parent 634c7b7 commit bc8c009

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
lint:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v2
32-
- uses: actions/setup-python@v2
31+
- uses: actions/checkout@v4
32+
- uses: actions/setup-python@v5
3333
with:
3434
python-version: 3.9
3535
- name: get pip cache dir
3636
id: pip-cache
3737
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
3838
- name: cache pip
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4
4040
with:
4141
path: ${{ steps.pip-cache.outputs.dir }}
4242
key: pip|lint
@@ -124,10 +124,10 @@ jobs:
124124
- {django: '5.1.*', python: '3.13', os: 'ubuntu-latest'}
125125

126126
steps:
127-
- uses: actions/checkout@v2
127+
- uses: actions/checkout@v4
128128
- name: Setup Python v. >2.7
129129
if: ${{ matrix.python != '2.7' }}
130-
uses: actions/setup-python@v2
130+
uses: actions/setup-python@v5
131131
with:
132132
python-version: ${{ matrix.python }}
133133
- name: Setup Python v2.7
@@ -146,7 +146,7 @@ jobs:
146146
id: pip-cache
147147
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
148148
- name: cache pip
149-
uses: actions/cache@v2
149+
uses: actions/cache@v4
150150
with:
151151
path: ${{ steps.pip-cache.outputs.dir }}
152152
key: pip|${{ matrix.python }}|${{ matrix.django }}

0 commit comments

Comments
 (0)