37
37
38
38
steps :
39
39
- name : Checkout sources
40
- uses : actions/checkout@v2
40
+ uses : actions/checkout@v3
41
41
42
42
- name : Overriding default $CARGO_PROJECT_NAME with matrix value
43
43
if : ${{ matrix.cargo_project_name }}
@@ -154,7 +154,7 @@ jobs:
154
154
needs : [ build ]
155
155
steps :
156
156
- name : Checkout sources
157
- uses : actions/checkout@v2
157
+ uses : actions/checkout@v3
158
158
159
159
- name : Install stable toolchain
160
160
uses : actions-rs/toolchain@v1
@@ -213,7 +213,7 @@ jobs:
213
213
needs : [ build ]
214
214
steps :
215
215
- name : Checkout sources
216
- uses : actions/checkout@v2
216
+ uses : actions/checkout@v3
217
217
218
218
- name : Download aggregator
219
219
uses : actions/download-artifact@v3
@@ -341,18 +341,18 @@ jobs:
341
341
342
342
steps :
343
343
- name : Checkout
344
- uses : actions/checkout@v2
344
+ uses : actions/checkout@v3
345
345
346
346
- name : Log in to the Container registry
347
- uses : docker/login-action@v1
347
+ uses : docker/login-action@v2
348
348
with :
349
349
registry : ${{ env.REGISTRY }}
350
350
username : ${{ github.actor }}
351
351
password : ${{ secrets.GITHUB_TOKEN }}
352
352
353
353
- name : Extract metadata (tags, labels) for Docker
354
354
id : meta
355
- uses : docker/metadata-action@v3
355
+ uses : docker/metadata-action@v4
356
356
with :
357
357
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
358
358
tags : |
@@ -366,7 +366,7 @@ jobs:
366
366
path : ${{ matrix.project }}
367
367
368
368
- name : Build and push Docker image
369
- uses : docker/build-push-action@v2
369
+ uses : docker/build-push-action@v3
370
370
with :
371
371
context : ${{ env.CONTEXT }}
372
372
file : ${{ env.DOCKER_FILE }}
@@ -420,7 +420,7 @@ jobs:
420
420
- docker-mithril
421
421
steps :
422
422
- name : Checkout sources
423
- uses : actions/checkout@v2
423
+ uses : actions/checkout@v3
424
424
425
425
- name : Download mithril-core-doc artifact
426
426
uses : actions/download-artifact@v3
@@ -507,14 +507,14 @@ jobs:
507
507
steps :
508
508
509
509
- name : Checkout sources
510
- uses : actions/checkout@v2
510
+ uses : actions/checkout@v3
511
511
512
512
- name : Get short SHA
513
513
id : slug
514
514
run : echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-7)"
515
515
516
516
- name : Setup Terraform
517
- uses : hashicorp/setup-terraform@v1
517
+ uses : hashicorp/setup-terraform@v2
518
518
with :
519
519
terraform_wrapper : false
520
520
0 commit comments