Skip to content

Commit 57e207f

Browse files
chore(actions): update github-actions
1 parent 40f8ff9 commit 57e207f

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
@@ -98,12 +98,12 @@ 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

105105
- name: Build Docker image
106-
uses: docker/build-push-action@v6
106+
uses: docker/build-push-action@v7
107107
with:
108108
platforms: linux/amd64,linux/arm64
109109
context: .
@@ -121,7 +121,7 @@ jobs:
121121
labels: ${{ steps.extract-metadata.outputs.labels }}
122122

123123
- name: Upload Docker image archive
124-
uses: actions/upload-artifact@v6
124+
uses: actions/upload-artifact@v7
125125
with:
126126
name: image.tar
127127
path: ${{ runner.temp }}/image.tar
@@ -135,7 +135,7 @@ jobs:
135135
- name: Checkout repository
136136
uses: actions/checkout@v6
137137

138-
- uses: azure/setup-helm@v4
138+
- uses: azure/setup-helm@v5
139139
with:
140140
version: ${{ env.HELM_VERSION }}
141141

@@ -154,7 +154,7 @@ jobs:
154154
kubectl version
155155
156156
- name: Download Docker image archive
157-
uses: actions/download-artifact@v7
157+
uses: actions/download-artifact@v8
158158
with:
159159
name: ${{ needs.build-docker.outputs.image-archive }}
160160
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 }}
@@ -83,12 +83,12 @@ jobs:
8383
8484
- name: Extract metadata (tags, labels) for Docker
8585
id: extract-metadata
86-
uses: docker/metadata-action@v5
86+
uses: docker/metadata-action@v6
8787
with:
8888
images: ${{ steps.prepare-repository-name.outputs.repository }}
8989

9090
- name: Build and push Docker image
91-
uses: docker/build-push-action@v6
91+
uses: docker/build-push-action@v7
9292
with:
9393
platforms: linux/amd64,linux/arm64
9494
context: .
@@ -150,7 +150,7 @@ jobs:
150150
- name: Checkout repository
151151
uses: actions/checkout@v6
152152

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

0 commit comments

Comments
 (0)