Skip to content

Commit e4479fc

Browse files
authored
meta: upgrade github action versions
1 parent dc3b526 commit e4479fc

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,34 +20,34 @@ jobs:
2020
uses: actions/checkout@v3
2121

2222
- name: Log in to the Container registry
23-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
23+
uses: docker/login-action@v2
2424
with:
2525
registry: ${{ env.REGISTRY }}
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.GITHUB_TOKEN }}
2828

2929
- name: Extract metadata (tags, labels) for Docker (api)
3030
id: meta-api
31-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
31+
uses: docker/metadata-action@v4
3232
with:
3333
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_BASE }}-api
3434

3535
- name: Extract metadata (tags, labels) for Docker (client)
3636
id: meta-client
37-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
37+
uses: docker/metadata-action@v4
3838
with:
3939
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_BASE }}-client
4040

4141
- name: Build and push Docker image (api)
42-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
42+
uses: docker/build-push-action@v4
4343
with:
4444
context: ./api
4545
push: true
4646
tags: ${{ steps.meta-api.outputs.tags }}
4747
labels: ${{ steps.meta-api.outputs.labels }}
4848

4949
- name: Build and push Docker image (client)
50-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
50+
uses: docker/build-push-action@v4
5151
with:
5252
context: ./client
5353
push: true

0 commit comments

Comments
 (0)