Skip to content

Commit 0f7984d

Browse files
chore(actions): update github-actions
1 parent af3f961 commit 0f7984d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
uses: actions/checkout@v6
6464

6565
- name: Setup Docker Buildx
66-
uses: docker/setup-buildx-action@v3
66+
uses: docker/setup-buildx-action@v4
6767

6868
- name: Prepare repository name
6969
id: prepare-repository-name
@@ -73,12 +73,12 @@ jobs:
7373
7474
- name: Extract metadata (tags, labels) for Docker
7575
id: extract-metadata
76-
uses: docker/metadata-action@v5
76+
uses: docker/metadata-action@v6
7777
with:
7878
images: ${{ steps.prepare-repository-name.outputs.repository }}
7979

8080
- name: Build Docker image
81-
uses: docker/build-push-action@v6
81+
uses: docker/build-push-action@v7
8282
with:
8383
platforms: linux/amd64,linux/arm64
8484
context: .
@@ -96,7 +96,7 @@ jobs:
9696
labels: ${{ steps.extract-metadata.outputs.labels }}
9797

9898
- name: Upload Docker image archive
99-
uses: actions/upload-artifact@v6
99+
uses: actions/upload-artifact@v7
100100
with:
101101
name: image.tar
102102
path: ${{ runner.temp }}/image.tar

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444
uses: actions/checkout@v6
4545

4646
- name: Setup Docker Buildx
47-
uses: docker/setup-buildx-action@v3
47+
uses: docker/setup-buildx-action@v4
4848

4949
- name: Log in to the Container registry
50-
uses: docker/login-action@v3
50+
uses: docker/login-action@v4
5151
with:
5252
registry: ${{ env.REGISTRY }}
5353
username: ${{ github.actor }}
@@ -61,12 +61,12 @@ jobs:
6161
6262
- name: Extract metadata (tags, labels) for Docker
6363
id: extract-metadata
64-
uses: docker/metadata-action@v5
64+
uses: docker/metadata-action@v6
6565
with:
6666
images: ${{ steps.prepare-repository-name.outputs.repository }}
6767

6868
- name: Build and push Docker image
69-
uses: docker/build-push-action@v6
69+
uses: docker/build-push-action@v7
7070
with:
7171
platforms: linux/amd64,linux/arm64
7272
context: .

0 commit comments

Comments
 (0)