@@ -22,10 +22,10 @@ jobs:
2222
2323 steps :
2424 - name : Checkout code
25- uses : actions/checkout@v4
25+ uses : actions/checkout@v5
2626
2727 - name : Set up Python ${{ matrix.python-version }}
28- uses : actions/setup-python@v5
28+ uses : actions/setup-python@v6
2929 with :
3030 python-version : ${{ matrix.python-version }}
3131
6565
6666 - name : Upload coverage to Codecov
6767 if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.14'
68- uses : codecov/codecov-action@v4
68+ uses : codecov/codecov-action@v5
6969 with :
7070 file : ./coverage.xml
7171 flags : unittests
@@ -79,10 +79,10 @@ jobs:
7979 # See: https://github.com/PyCQA/bandit/issues with ast.Num deprecation
8080 steps :
8181 - name : Checkout code
82- uses : actions/checkout@v4
82+ uses : actions/checkout@v5
8383
8484 - name : Set up Python
85- uses : actions/setup-python@v5
85+ uses : actions/setup-python@v6
8686 with :
8787 python-version : ' 3.13' # Use 3.13 until bandit supports 3.14
8888
@@ -112,12 +112,12 @@ jobs:
112112 runs-on : ubuntu-latest
113113 steps :
114114 - name : Checkout code
115- uses : actions/checkout@v4
115+ uses : actions/checkout@v5
116116 with :
117117 fetch-depth : 0 # Needed for setuptools_scm
118118
119119 - name : Set up Python
120- uses : actions/setup-python@v5
120+ uses : actions/setup-python@v6
121121 with :
122122 python-version : ' 3.14'
123123
@@ -154,15 +154,15 @@ jobs:
154154 if : github.event_name == 'pull_request' || github.ref == 'refs/heads/main'
155155 steps :
156156 - name : Checkout code
157- uses : actions/checkout@v4
157+ uses : actions/checkout@v5
158158
159159 - name : Set up Python
160- uses : actions/setup-python@v5
160+ uses : actions/setup-python@v6
161161 with :
162162 python-version : ' 3.14'
163163
164164 - name : Download build artifacts
165- uses : actions/download-artifact@v4
165+ uses : actions/download-artifact@v5
166166 with :
167167 name : dist-${{ github.sha }}
168168 path : dist/
@@ -193,7 +193,7 @@ jobs:
193193 if : github.event_name == 'pull_request' || github.ref == 'refs/heads/main'
194194 steps :
195195 - name : Checkout code
196- uses : actions/checkout@v4
196+ uses : actions/checkout@v5
197197 with :
198198 fetch-depth : 0 # Needed for setuptools_scm
199199
0 commit comments