Skip to content

Commit eb7114d

Browse files
chore(actions): update github-actions
1 parent 64102bc commit eb7114d

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/build.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
uses: actions/checkout@v6
7474

7575
- name: Setup Docker Buildx
76-
uses: docker/setup-buildx-action@v3
76+
uses: docker/setup-buildx-action@v4
7777

7878
- name: Prepare repository name
7979
id: prepare-repository-name
@@ -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 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: .
@@ -107,7 +107,7 @@ jobs:
107107
labels: ${{ steps.extract-metadata.outputs.labels }}
108108

109109
- name: Upload Docker image archive
110-
uses: actions/upload-artifact@v6
110+
uses: actions/upload-artifact@v7
111111
with:
112112
name: image_controller.tar
113113
path: ${{ runner.temp }}/image_controller.tar
@@ -128,7 +128,7 @@ jobs:
128128
uses: actions/checkout@v6
129129

130130
- name: Setup Docker Buildx
131-
uses: docker/setup-buildx-action@v3
131+
uses: docker/setup-buildx-action@v4
132132

133133
- name: Prepare repository name
134134
id: prepare-repository-name
@@ -138,12 +138,12 @@ jobs:
138138
139139
- name: Extract metadata (tags, labels) for Docker
140140
id: extract-metadata
141-
uses: docker/metadata-action@v5
141+
uses: docker/metadata-action@v6
142142
with:
143143
images: ${{ steps.prepare-repository-name.outputs.repository }}
144144

145145
- name: Build Docker image
146-
uses: docker/build-push-action@v6
146+
uses: docker/build-push-action@v7
147147
with:
148148
platforms: linux/amd64,linux/arm64
149149
context: .
@@ -162,7 +162,7 @@ jobs:
162162
labels: ${{ steps.extract-metadata.outputs.labels }}
163163

164164
- name: Upload Docker image archive
165-
uses: actions/upload-artifact@v6
165+
uses: actions/upload-artifact@v7
166166
with:
167167
name: image_webhook.tar
168168
path: ${{ runner.temp }}/image_webhook.tar

.github/workflows/publish-website.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Setup Pages
4949
id: pages
50-
uses: actions/configure-pages@v5
50+
uses: actions/configure-pages@v6
5151

5252
- name: Get node version from package.json
5353
id: get_node_version
@@ -93,5 +93,5 @@ jobs:
9393
steps:
9494
- name: Deploy to GitHub Pages
9595
id: deployment
96-
uses: actions/deploy-pages@v4
96+
uses: actions/deploy-pages@v5
9797

.github/workflows/publish.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
uses: actions/checkout@v6
4646

4747
- name: Setup Docker Buildx
48-
uses: docker/setup-buildx-action@v3
48+
uses: docker/setup-buildx-action@v4
4949

5050
- name: Log in to the Container registry
51-
uses: docker/login-action@v3
51+
uses: docker/login-action@v4
5252
with:
5353
registry: ${{ env.REGISTRY }}
5454
username: ${{ github.actor }}
@@ -62,12 +62,12 @@ jobs:
6262
6363
- name: Extract metadata (tags, labels) for Docker
6464
id: extract-metadata
65-
uses: docker/metadata-action@v5
65+
uses: docker/metadata-action@v6
6666
with:
6767
images: ${{ steps.prepare-repository-name.outputs.repository }}
6868

6969
- name: Build and push Docker image
70-
uses: docker/build-push-action@v6
70+
uses: docker/build-push-action@v7
7171
with:
7272
platforms: linux/amd64,linux/arm64
7373
context: .
@@ -96,10 +96,10 @@ jobs:
9696
uses: actions/checkout@v6
9797

9898
- name: Setup Docker Buildx
99-
uses: docker/setup-buildx-action@v3
99+
uses: docker/setup-buildx-action@v4
100100

101101
- name: Log in to the Container registry
102-
uses: docker/login-action@v3
102+
uses: docker/login-action@v4
103103
with:
104104
registry: ${{ env.REGISTRY }}
105105
username: ${{ github.actor }}
@@ -113,12 +113,12 @@ 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

120120
- name: Build and push Docker image
121-
uses: docker/build-push-action@v6
121+
uses: docker/build-push-action@v7
122122
with:
123123
platforms: linux/amd64,linux/arm64
124124
context: .

0 commit comments

Comments
 (0)