Skip to content

Commit 09da8b3

Browse files
committed
Merge branch 'develop' of https://github.com/xdev-software/mockserver-neolight into develop
2 parents e0c65bb + a1002b8 commit 09da8b3

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/check-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ jobs:
7373
if-no-files-found: error
7474

7575
# Build docker
76-
- uses: docker/setup-qemu-action@v3
76+
- uses: docker/setup-qemu-action@v4
7777

78-
- uses: docker/setup-buildx-action@v3
78+
- uses: docker/setup-buildx-action@v4
7979

80-
- uses: docker/build-push-action@v6
80+
- uses: docker/build-push-action@v7
8181
with:
8282
context: ./server
8383
push: false
@@ -87,7 +87,7 @@ jobs:
8787
cache-to: type=gha,mode=max,scope=build
8888

8989
# 2 steps required because "failed to build: docker exporter does not currently support exporting manifest lists"
90-
- uses: docker/build-push-action@v6
90+
- uses: docker/build-push-action@v7
9191
with:
9292
context: ./server
9393
push: false

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,26 +230,26 @@ jobs:
230230
name: server-standalone
231231
path: server/target
232232

233-
- uses: docker/setup-qemu-action@v3
233+
- uses: docker/setup-qemu-action@v4
234234

235-
- uses: docker/setup-buildx-action@v3
235+
- uses: docker/setup-buildx-action@v4
236236

237237
- name: Login to DockerHub
238-
uses: docker/login-action@v3
238+
uses: docker/login-action@v4
239239
with:
240240
username: ${{ secrets.DOCKERHUB_USERNAME }}
241241
password: ${{ secrets.DOCKERHUB_TOKEN }}
242242

243243
- name: Login to ghcr.io
244-
uses: docker/login-action@v3
244+
uses: docker/login-action@v4
245245
with:
246246
registry: ghcr.io
247247
username: ${{ github.actor }}
248248
password: ${{ secrets.GITHUB_TOKEN }}
249249

250250
- name: Extract metadata (tags, labels) for Docker
251251
id: meta
252-
uses: docker/metadata-action@v5
252+
uses: docker/metadata-action@v6
253253
with:
254254
images: |
255255
${{ secrets.DOCKERHUB_USERNAME }}/mockserver
@@ -260,7 +260,7 @@ jobs:
260260
type=semver,pattern={{major}},value=${{ needs.prepare-release.outputs.version }}
261261
latest
262262
263-
- uses: docker/build-push-action@v6
263+
- uses: docker/build-push-action@v7
264264
id: push
265265
with:
266266
context: ./server

.github/workflows/test-deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,34 +80,34 @@ jobs:
8080
name: server-standalone
8181
path: server/target
8282

83-
- uses: docker/setup-qemu-action@v3
83+
- uses: docker/setup-qemu-action@v4
8484

85-
- uses: docker/setup-buildx-action@v3
85+
- uses: docker/setup-buildx-action@v4
8686

8787
- name: Login to DockerHub
88-
uses: docker/login-action@v3
88+
uses: docker/login-action@v4
8989
with:
9090
username: ${{ secrets.DOCKERHUB_USERNAME }}
9191
password: ${{ secrets.DOCKERHUB_TOKEN }}
9292

9393
- name: Login to ghcr.io
94-
uses: docker/login-action@v3
94+
uses: docker/login-action@v4
9595
with:
9696
registry: ghcr.io
9797
username: ${{ github.actor }}
9898
password: ${{ secrets.GITHUB_TOKEN }}
9999

100100
- name: Extract metadata (tags, labels) for Docker
101101
id: meta
102-
uses: docker/metadata-action@v5
102+
uses: docker/metadata-action@v6
103103
with:
104104
images: |
105105
${{ secrets.DOCKERHUB_USERNAME }}/mockserver
106106
ghcr.io/${{ github.repository }}
107107
tags: |
108108
experimental
109109
110-
- uses: docker/build-push-action@v6
110+
- uses: docker/build-push-action@v7
111111
id: push
112112
with:
113113
context: ./server

0 commit comments

Comments
 (0)