@@ -25,10 +25,10 @@ jobs:
2525 python-version : [ 3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13' ]
2626
2727 steps :
28- - uses : actions/checkout@v2
28+ - uses : actions/checkout@v4
2929 - name : Set up Python ${{ matrix.python-version }}
3030 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
31- uses : actions/setup-python@v2
31+ uses : actions/setup-python@v5
3232 with :
3333 python-version : ${{ matrix.python-version }}
3434 - name : Install tox
3838 pip install tox
3939 - name : tox env cache
4040 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
41- uses : actions/cache@v2
41+ uses : actions/cache@v4
4242 with :
4343 path : ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
4444 key : ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -57,10 +57,10 @@ jobs:
5757 python-version : [ 3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13' ]
5858
5959 steps :
60- - uses : actions/checkout@v2
60+ - uses : actions/checkout@v4
6161 - name : Set up Python ${{ matrix.python-version }}
6262 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
63- uses : actions/setup-python@v2
63+ uses : actions/setup-python@v5
6464 with :
6565 python-version : ${{ matrix.python-version }}
6666 - name : Install system dependencies
7575 pip install tox
7676 - name : tox env cache
7777 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
78- uses : actions/cache@v2
78+ uses : actions/cache@v4
7979 with :
8080 path : ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }}
8181 key : ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -106,10 +106,10 @@ jobs:
106106 # Maps tcp port 5432 on service container to the host
107107 - 5432:5432
108108 steps :
109- - uses : actions/checkout@v2
109+ - uses : actions/checkout@v4
110110 - name : Set up Python 3.9 for Postgres
111111 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
112- uses : actions/setup-python@v2
112+ uses : actions/setup-python@v5
113113 with :
114114 python-version : 3.9
115115 - name : Install tox
@@ -119,7 +119,7 @@ jobs:
119119 pip install tox
120120 - name : tox env cache
121121 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
122- uses : actions/cache@v2
122+ uses : actions/cache@v4
123123 with :
124124 path : ${{ github.workspace }}/.tox/py3.9-postgres
125125 key : ${{ runner.os }}-tox-py3.9-postgres-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -136,10 +136,10 @@ jobs:
136136 python-version : [3.8]
137137
138138 steps :
139- - uses : actions/checkout@v2
139+ - uses : actions/checkout@v4
140140 - name : Set up Python ${{ matrix.python-version }}
141141 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
142- uses : actions/setup-python@v2
142+ uses : actions/setup-python@v5
143143 with :
144144 python-version : ${{ matrix.python-version }}
145145 - name : Install tox
0 commit comments