Skip to content

Commit 614fb77

Browse files
chore(actions): update github-actions
1 parent 96c0fb4 commit 614fb77

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
uses: actions/checkout@v6
8989

9090
- name: Setup Docker Buildx
91-
uses: docker/setup-buildx-action@v3
91+
uses: docker/setup-buildx-action@v4
9292

9393
- name: Prepare repository name
9494
id: prepare-repository-name
@@ -113,13 +113,13 @@ jobs:
113113
114114
- name: Extract metadata (tags, labels) for Docker
115115
id: extract-metadata
116-
uses: docker/metadata-action@v5
116+
uses: docker/metadata-action@v6
117117
with:
118118
images: ${{ steps.prepare-repository-name.outputs.repository }}
119119
labels: ${{ steps.extract-custom-labels.outputs.labels }}
120120

121121
- name: Build Docker image
122-
uses: docker/build-push-action@v6
122+
uses: docker/build-push-action@v7
123123
with:
124124
platforms: linux/amd64,linux/arm64
125125
context: .
@@ -137,7 +137,7 @@ jobs:
137137
labels: ${{ steps.extract-metadata.outputs.labels }}
138138

139139
- name: Upload Docker image archive
140-
uses: actions/upload-artifact@v6
140+
uses: actions/upload-artifact@v7
141141
with:
142142
name: image.tar
143143
path: ${{ runner.temp }}/image.tar
@@ -151,7 +151,7 @@ jobs:
151151
- name: Checkout repository
152152
uses: actions/checkout@v6
153153

154-
- uses: azure/setup-helm@v4
154+
- uses: azure/setup-helm@v5
155155
with:
156156
version: ${{ env.HELM_VERSION }}
157157

@@ -170,7 +170,7 @@ jobs:
170170
kubectl version
171171
172172
- name: Download Docker image archive
173-
uses: actions/download-artifact@v7
173+
uses: actions/download-artifact@v8
174174
with:
175175
name: ${{ needs.build-docker.outputs.image-archive }}
176176
path: ${{ runner.temp }}

.github/workflows/publish.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ jobs:
6666
uses: actions/checkout@v6
6767

6868
- name: Setup Docker Buildx
69-
uses: docker/setup-buildx-action@v3
69+
uses: docker/setup-buildx-action@v4
7070

7171
- name: Log in to the Container registry
72-
uses: docker/login-action@v3
72+
uses: docker/login-action@v4
7373
with:
7474
registry: ${{ env.REGISTRY }}
7575
username: ${{ github.actor }}
@@ -98,13 +98,13 @@ jobs:
9898
9999
- name: Extract metadata (tags, labels) for Docker
100100
id: extract-metadata
101-
uses: docker/metadata-action@v5
101+
uses: docker/metadata-action@v6
102102
with:
103103
images: ${{ steps.prepare-repository-name.outputs.repository }}
104104
labels: ${{ steps.extract-custom-labels.outputs.labels }}
105105

106106
- name: Build and push Docker image
107-
uses: docker/build-push-action@v6
107+
uses: docker/build-push-action@v7
108108
with:
109109
platforms: linux/amd64,linux/arm64
110110
context: .
@@ -166,7 +166,7 @@ jobs:
166166
- name: Checkout repository
167167
uses: actions/checkout@v6
168168

169-
- uses: azure/setup-helm@v4
169+
- uses: azure/setup-helm@v5
170170
with:
171171
version: ${{ env.HELM_VERSION }}
172172

0 commit comments

Comments
 (0)