@@ -39,10 +39,10 @@ jobs:
3939
4040 steps :
4141 - name : Check out the repository
42- uses : actions/checkout@v5
42+ uses : actions/checkout@v6
4343
4444 - name : Set up Python ${{ matrix.python }}
45- uses : actions/setup-python@v6.0 .0
45+ uses : actions/setup-python@v6.1 .0
4646 with :
4747 python-version : ${{ matrix.python }}
4848
@@ -103,15 +103,15 @@ jobs:
103103
104104 - name : Upload coverage data
105105 if : always() && matrix.session == 'tests'
106- uses : " actions/upload-artifact@v4 "
106+ uses : " actions/upload-artifact@v5 "
107107 with :
108108 name : coverage-data-${{ matrix.os }}-${{ matrix.python }}
109109 path : " .coverage.*"
110110 include-hidden-files : true
111111
112112 - name : Upload documentation
113113 if : matrix.session == 'docs-build'
114- uses : actions/upload-artifact@v4
114+ uses : actions/upload-artifact@v5
115115 with :
116116 name : docs
117117 path : docs/_build
@@ -121,12 +121,12 @@ jobs:
121121 needs : tests
122122 steps :
123123 - name : Check out the repository
124- uses : actions/checkout@v5
124+ uses : actions/checkout@v6
125125 with :
126126 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
127127
128128 - name : Set up Python
129- uses : actions/setup-python@v6.0 .0
129+ uses : actions/setup-python@v6.1 .0
130130 with :
131131 python-version : " 3.11"
132132
@@ -148,7 +148,7 @@ jobs:
148148 nox --version
149149
150150 - name : Download coverage data
151- uses : actions/download-artifact@v5
151+ uses : actions/download-artifact@v6
152152 with :
153153 pattern : coverage-data-*
154154 merge-multiple : true
0 commit comments