Skip to content

Commit d33579b

Browse files
chore(actions): update github-actions
1 parent 4390557 commit d33579b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
uses: actions/checkout@v4
8686

8787
- name: Setup Docker Buildx
88-
uses: docker/setup-buildx-action@v2
88+
uses: docker/setup-buildx-action@v3
8989

9090
- name: Prepare repository name
9191
id: prepare-repository-name
@@ -95,12 +95,12 @@ jobs:
9595
9696
- name: Extract metadata (tags, labels) for Docker
9797
id: extract-metadata
98-
uses: docker/metadata-action@v4
98+
uses: docker/metadata-action@v5
9999
with:
100100
images: ${{ steps.prepare-repository-name.outputs.repository }}
101101

102102
- name: Build Docker image
103-
uses: docker/build-push-action@v4
103+
uses: docker/build-push-action@v5
104104
with:
105105
platforms: linux/amd64,linux/arm64
106106
context: .

.github/workflows/publish.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Setup Docker Buildx
33-
uses: docker/setup-buildx-action@v2
33+
uses: docker/setup-buildx-action@v3
3434

3535
- name: Log in to the Container registry
36-
uses: docker/login-action@v2
36+
uses: docker/login-action@v3
3737
with:
3838
registry: ${{ env.REGISTRY }}
3939
username: ${{ github.actor }}
@@ -47,12 +47,12 @@ jobs:
4747
4848
- name: Extract metadata (tags, labels) for Docker
4949
id: extract-metadata
50-
uses: docker/metadata-action@v4
50+
uses: docker/metadata-action@v5
5151
with:
5252
images: ${{ steps.prepare-repository-name.outputs.repository }}
5353

5454
- name: Build and push Docker image
55-
uses: docker/build-push-action@v4
55+
uses: docker/build-push-action@v5
5656
with:
5757
platforms: linux/amd64,linux/arm64
5858
context: .

0 commit comments

Comments
 (0)