@@ -31,10 +31,10 @@ jobs:
3131 runs-on : ${{ matrix.os }}
3232
3333 steps :
34- - uses : actions/checkout@v4
34+ - uses : actions/checkout@v6
3535
3636 - name : Install uv
37- uses : astral-sh/setup-uv@v5
37+ uses : astral-sh/setup-uv@v7
3838 with :
3939 python-version : ${{ matrix.python-version }}
4040 version : ${{ env.UV_VERSION }}
@@ -58,10 +58,10 @@ jobs:
5858 name : Format
5959 runs-on : [ubuntu-24.04]
6060 steps :
61- - uses : actions/checkout@v4
61+ - uses : actions/checkout@v6
6262
6363 - name : Install uv
64- uses : astral-sh/setup-uv@v5
64+ uses : astral-sh/setup-uv@v7
6565 with :
6666 python-version : " 3.11"
6767 version : ${{ env.UV_VERSION }}
@@ -90,12 +90,12 @@ jobs:
9090 runs-on : ${{ matrix.os }}
9191
9292 steps :
93- - uses : actions/checkout@v4
93+ - uses : actions/checkout@v6
9494 with :
9595 submodules : true
9696
9797 - name : Install uv
98- uses : astral-sh/setup-uv@v5
98+ uses : astral-sh/setup-uv@v7
9999 with :
100100 python-version : ${{ matrix.python-version }}
101101 version : ${{ env.UV_VERSION }}
@@ -108,10 +108,10 @@ jobs:
108108 runs-on : [ubuntu-24.04]
109109
110110 steps :
111- - uses : actions/checkout@v4
111+ - uses : actions/checkout@v6
112112
113113 - name : Install uv
114- uses : astral-sh/setup-uv@v5
114+ uses : astral-sh/setup-uv@v7
115115 with :
116116 python-version : " 3.12"
117117 version : ${{ env.UV_VERSION }}
@@ -145,10 +145,10 @@ jobs:
145145 permissions :
146146 id-token : write
147147 steps :
148- - uses : actions/checkout@v4
148+ - uses : actions/checkout@v6
149149
150150 - name : Install uv
151- uses : astral-sh/setup-uv@v5
151+ uses : astral-sh/setup-uv@v7
152152 with :
153153 python-version : " 3.11"
154154 version : ${{ env.UV_VERSION }}
@@ -190,7 +190,7 @@ jobs:
190190 if : ${{ github.ref == 'refs/heads/main' }}
191191 needs : [lint, format, test, docs]
192192 steps :
193- - uses : actions/checkout@v4
193+ - uses : actions/checkout@v6
194194
195195 - name : Publish docs from main branch
196196 uses : ./.github/actions/update-docs
@@ -206,14 +206,14 @@ jobs:
206206 if : ${{ github.event_name == 'pull_request' }}
207207 needs : [lint, format, test, docs]
208208 steps :
209- - uses : actions/checkout@v4
209+ - uses : actions/checkout@v6
210210 with :
211211 ref : ${{ github.head_ref }}
212212
213213 # Checks to see if any files in the PR match one of the listed file types.
214214 # This will return true if there's a file in docs folder that was added, deleted, or modified in the PR.
215215 - name : Check if files in docs folder have changed
216- uses : dorny/paths-filter@v3
216+ uses : dorny/paths-filter@v4
217217 id : docs-changes
218218 with :
219219 filters : |
0 commit comments