@@ -22,10 +22,10 @@ jobs:
2222 matrix :
2323 python-version : [3.9, '3.10', '3.11', '3.12', '3.13']
2424 steps :
25- - uses : actions/checkout@v4
25+ - uses : actions/checkout@v6
2626 - name : Set up Python ${{ matrix.python-version }}
2727 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
28- uses : actions/setup-python@v5
28+ uses : actions/setup-python@v6
2929 with :
3030 python-version : ${{ matrix.python-version }}
3131 - name : Install tox
3535 pip install tox
3636 - name : tox env cache
3737 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
38- uses : actions/cache@v4
38+ uses : actions/cache@v5
3939 with :
4040 path : ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
4141 key : ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -53,15 +53,15 @@ jobs:
5353 container :
5454 image : python:${{ matrix.python-version }}-buster
5555 steps :
56- - uses : actions/checkout@v4
56+ - uses : actions/checkout@v6
5757 - name : Install tox
5858 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
5959 run : |
6060 python -m pip install --upgrade pip
6161 pip install tox
6262 - name : tox env cache
6363 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
64- uses : actions/cache@v4
64+ uses : actions/cache@v5
6565 with :
6666 path : ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
6767 key : ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -79,10 +79,10 @@ jobs:
7979 matrix :
8080 python-version : [3.9, '3.10', '3.11', '3.12', '3.13']
8181 steps :
82- - uses : actions/checkout@v4
82+ - uses : actions/checkout@v6
8383 - name : Set up Python ${{ matrix.python-version }}
8484 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
85- uses : actions/setup-python@v5
85+ uses : actions/setup-python@v6
8686 with :
8787 python-version : ${{ matrix.python-version }}
8888 - name : Install system dependencies
9797 pip install tox
9898 - name : tox env cache
9999 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
100- uses : actions/cache@v4
100+ uses : actions/cache@v5
101101 with :
102102 path : ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }}
103103 key : ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -117,7 +117,7 @@ jobs:
117117 container :
118118 image : python:${{ matrix.python-version }}-buster
119119 steps :
120- - uses : actions/checkout@v4
120+ - uses : actions/checkout@v6
121121 - name : Install system dependencies
122122 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
123123 run : |
@@ -133,7 +133,7 @@ jobs:
133133 pip install tox
134134 - name : tox env cache
135135 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
136- uses : actions/cache@v4
136+ uses : actions/cache@v5
137137 with :
138138 path : ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }}
139139 key : ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -161,10 +161,10 @@ jobs:
161161 # Maps tcp port 5432 on service container to the host
162162 - 5432:5432
163163 steps :
164- - uses : actions/checkout@v4
164+ - uses : actions/checkout@v6
165165 - name : Set up Python 3.9 for Postgres
166166 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
167- uses : actions/setup-python@v5
167+ uses : actions/setup-python@v6
168168 with :
169169 python-version : 3.9
170170 - name : Install tox
@@ -174,7 +174,7 @@ jobs:
174174 pip install tox
175175 - name : tox env cache
176176 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
177- uses : actions/cache@v4
177+ uses : actions/cache@v5
178178 with :
179179 path : ${{ github.workspace }}/.tox/py3.9-postgres
180180 key : ${{ runner.os }}-tox-py3.9-postgres-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -190,10 +190,10 @@ jobs:
190190 matrix :
191191 python-version : [3.8]
192192 steps :
193- - uses : actions/checkout@v4
193+ - uses : actions/checkout@v6
194194 - name : Set up Python ${{ matrix.python-version }}
195195 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
196- uses : actions/setup-python@v5
196+ uses : actions/setup-python@v6
197197 with :
198198 python-version : ${{ matrix.python-version }}
199199 - name : Install tox
0 commit comments