Skip to content

Commit 716c69c

Browse files
author
Omri Hopson
committed
updated buildx
1 parent a9a57f1 commit 716c69c

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Set up Docker Buildx
17-
uses: docker/setup-buildx-action@v3
17+
uses: docker/setup-buildx-action@v4
1818

1919
- name: Login to Docker Hub
20-
uses: docker/login-action@v3
20+
uses: docker/login-action@v4
2121
with:
2222
username: ${{ secrets.DOCKER_USERNAME }}
2323
password: ${{ secrets.DOCKER_PASSWORD }}
2424

2525
- name: Extract metadata
2626
id: meta
27-
uses: docker/metadata-action@v5
27+
uses: docker/metadata-action@v6
2828
with:
2929
images: ohopson/context-simplo
3030
tags: |
3131
type=raw,value=dev
3232
type=sha,prefix=dev-
3333
3434
- name: Build and push Docker image
35-
uses: docker/build-push-action@v5
35+
uses: docker/build-push-action@v6
3636
with:
3737
context: .
3838
file: ./Dockerfile

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Set up Docker Buildx
18-
uses: docker/setup-buildx-action@v3
18+
uses: docker/setup-buildx-action@v4
1919

2020
- name: Login to Docker Hub
21-
uses: docker/login-action@v3
21+
uses: docker/login-action@v4
2222
with:
2323
username: ${{ secrets.DOCKER_USERNAME }}
2424
password: ${{ secrets.DOCKER_PASSWORD }}
2525

2626
- name: Extract metadata
2727
id: meta
28-
uses: docker/metadata-action@v5
28+
uses: docker/metadata-action@v6
2929
with:
3030
images: ohopson/context-simplo
3131
tags: |
@@ -35,7 +35,7 @@ jobs:
3535
type=raw,value=latest,enable={{is_default_branch}}
3636
3737
- name: Build and push Docker image
38-
uses: docker/build-push-action@v5
38+
uses: docker/build-push-action@v6
3939
with:
4040
context: .
4141
file: ./Dockerfile

0 commit comments

Comments
 (0)