2929 steps :
3030 - uses : actions/checkout@v4
3131 - name : Set up Python ${{ matrix.python-version }}
32- uses : actions/setup-python@v2
32+ uses : actions/setup-python@v5
3333 with :
3434 python-version : ${{ matrix.python-version }}
3535
6565
6666 - name : Upload Results
6767 if : ${{ matrix.python-version == env.LATEST_PY_VERSION }}
68- uses : codecov/codecov-action@v1
68+ uses : codecov/codecov-action@v3
6969 with :
7070 file : ./coverage.xml
7171 flags : unittests
7979 steps :
8080 - uses : actions/checkout@v4
8181 - name : Set up Python
82- uses : actions/setup-python@v1
82+ uses : actions/setup-python@v5
8383 with :
8484 python-version : ${{ env.LATEST_PY_VERSION }}
8585
@@ -115,19 +115,19 @@ jobs:
115115 uses : actions/checkout@v4
116116
117117 - name : Set up QEMU
118- uses : docker/setup-qemu-action@v1
118+ uses : docker/setup-qemu-action@v3
119119
120120 - name : Set up Docker Buildx
121- uses : docker/setup-buildx-action@v1
121+ uses : docker/setup-buildx-action@v3
122122
123123 - name : Login to DockerHub
124- uses : docker/login-action@v1
124+ uses : docker/login-action@v3
125125 with :
126126 username : ${{ secrets.DOCKERHUB_USERNAME }}
127127 password : ${{ secrets.DOCKERHUB_TOKEN }}
128128
129129 - name : Login to Github
130- uses : docker/login-action@v1
130+ uses : docker/login-action@v3
131131 with :
132132 registry : ghcr.io
133133 username : ${{ github.actor }}
@@ -141,7 +141,7 @@ jobs:
141141 # Push `latest` when commiting to main
142142 - name : Build and push uvicorn
143143 if : github.ref == 'refs/heads/main'
144- uses : docker/build-push-action@v2
144+ uses : docker/build-push-action@v5
145145 with :
146146 # See https://github.com/developmentseed/titiler/discussions/387
147147 platforms : linux/amd64
@@ -154,7 +154,7 @@ jobs:
154154 # Push `{VERSION}` when pushing a new tag
155155 - name : Build and push uvicorn
156156 if : startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
157- uses : docker/build-push-action@v2
157+ uses : docker/build-push-action@v5
158158 with :
159159 # See https://github.com/developmentseed/titiler/discussions/387
160160 platforms : linux/amd64
@@ -168,7 +168,7 @@ jobs:
168168 # Push `latest` when commiting to main
169169 - name : Build and push
170170 if : github.ref == 'refs/heads/main'
171- uses : docker/build-push-action@v2
171+ uses : docker/build-push-action@v5
172172 with :
173173 # See https://github.com/developmentseed/titiler/discussions/387
174174 platforms : linux/amd64
@@ -181,7 +181,7 @@ jobs:
181181 # Push `{VERSION}` when pushing a new tag
182182 - name : Build and push
183183 if : startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
184- uses : docker/build-push-action@v2
184+ uses : docker/build-push-action@v5
185185 with :
186186 # See https://github.com/developmentseed/titiler/discussions/387
187187 platforms : linux/amd64
@@ -209,22 +209,22 @@ jobs:
209209 shell : bash
210210
211211 - name : Configure AWS credentials
212- uses : aws-actions/configure-aws-credentials@v1
212+ uses : aws-actions/configure-aws-credentials@v4
213213 with :
214214 aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
215215 aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
216216 aws-region : us-east-1
217217
218218 - name : Set up Node.js
219- uses : actions/setup-node@v1
219+ uses : actions/setup-node@v4
220220 with :
221221 node-version : ' 14.x'
222222
223223 - name : Install cdk
224224 run : npm install -g
225225
226226 - name : Set up Python
227- uses : actions/setup-python@v4
227+ uses : actions/setup-python@v5
228228 with :
229229 python-version : ' 3.x'
230230
0 commit comments