@@ -45,13 +45,13 @@ jobs:
4545 SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct) pipx run build --sdist --wheel
4646
4747 - name : Upload Wheel and Sdist as artifacts
48- uses : actions/upload-artifact@v2
48+ uses : actions/upload-artifact@v3
4949 with :
5050 name : dist
5151 path : dist
5252
5353 - name : Install minimum python version
54- uses : actions/setup-python@v2
54+ uses : actions/setup-python@v4
5555 with :
5656 python-version : ${{ matrix.python }}
5757
9191 fetch-depth : 0
9292
9393 - name : Setup python ${{ matrix.python }}
94- uses : actions/setup-python@v2
94+ uses : actions/setup-python@v4
9595 with :
9696 python-version : ${{ matrix.python }}
9797
@@ -121,7 +121,7 @@ jobs:
121121
122122 - name : Upload build files
123123 if : matrix.lock
124- uses : actions/upload-artifact@v2
124+ uses : actions/upload-artifact@v3
125125 with :
126126 name : buildfiles
127127 path : |
@@ -134,7 +134,7 @@ jobs:
134134 # upload to PyPI and make a release on every tag
135135 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
136136 steps :
137- - uses : actions/download-artifact@v2
137+ - uses : actions/download-artifact@v3
138138 with :
139139 path : artifacts
140140
@@ -167,7 +167,7 @@ jobs:
167167 - name : Checkout
168168 uses : actions/checkout@v2
169169
170- - uses : actions/download-artifact@v2
170+ - uses : actions/download-artifact@v3
171171 with :
172172 name : dist
173173 path : dist
@@ -182,7 +182,7 @@ jobs:
182182
183183 - name : Log in to GitHub Docker Registry
184184 if : github.event_name != 'pull_request'
185- uses : docker/login-action@v1
185+ uses : docker/login-action@v2
186186 with :
187187 registry : ghcr.io
188188 username : ${{ github.actor }}
@@ -200,10 +200,10 @@ jobs:
200200
201201 - name : Set up Docker Buildx
202202 id : buildx
203- uses : docker/setup-buildx-action@v1
203+ uses : docker/setup-buildx-action@v2
204204
205205 - name : Build runtime image
206- uses : docker/build-push-action@v2
206+ uses : docker/build-push-action@v3
207207 with :
208208 file : .devcontainer/Dockerfile
209209 context : .
0 commit comments