Skip to content

Commit be61fb2

Browse files
chore: bump version to v4.0.3
[skip ci]
1 parent 52eb611 commit be61fb2

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/promote.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ jobs:
108108

109109
- id: release_version
110110
name: next release version
111-
uses: getdevopspro/github-actions/release-version@v4.0.2
111+
uses: getdevopspro/github-actions/release-version@v4.0.3
112112
with:
113113
version-previous: ${{ inputs.version-previous }}
114114
version-next: ${{ inputs.version-next }}
115115
version-output-format: ${{ inputs.version-output-format }}
116116

117117
- name: set version in file
118-
uses: getdevopspro/github-actions/version-file@v4.0.2
118+
uses: getdevopspro/github-actions/version-file@v4.0.3
119119
with:
120120
version: ${{ steps.release_version.outputs.version }}
121121
version-makefile: ${{ inputs.version-makefile }}
@@ -133,7 +133,7 @@ jobs:
133133
make ${{ inputs.make-target-pre-push }}
134134
135135
- name: Push git version
136-
uses: getdevopspro/github-actions/release-git-push@v4.0.2
136+
uses: getdevopspro/github-actions/release-git-push@v4.0.3
137137
if: inputs.push-git
138138
id: git_push
139139
with:

.github/workflows/pull-request.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -772,14 +772,14 @@ jobs:
772772
773773
- name: Next release version
774774
id: release_version
775-
uses: getdevopspro/github-actions/release-version@v4.0.2
775+
uses: getdevopspro/github-actions/release-version@v4.0.3
776776
with:
777777
version-previous: ${{ inputs.version-previous }}
778778
version-next: ${{ inputs.version-next }}
779779
version-output-format: ${{ inputs.version-output-format }}
780780

781781
- name: Set version in file
782-
uses: getdevopspro/github-actions/version-file@v4.0.2
782+
uses: getdevopspro/github-actions/version-file@v4.0.3
783783
with:
784784
version: ${{ steps.release_version.outputs.version }}
785785
version-makefile: ${{ inputs.version-makefile }}
@@ -1029,7 +1029,7 @@ jobs:
10291029
10301030
- name: Set image metadata and platform matrix
10311031
id: prepare_image
1032-
uses: getdevopspro/github-actions/buildx-bake/prepare@v4.0.2
1032+
uses: getdevopspro/github-actions/buildx-bake/prepare@v4.0.3
10331033
with:
10341034
bake-target: ${{ inputs.bake-target }}
10351035
registry-image: ${{ inputs.registry-image }}
@@ -1099,7 +1099,7 @@ jobs:
10991099

11001100
- name: ${{ matrix.pre-steps.name }}
11011101
id: command
1102-
uses: getdevopspro/github-actions/command@v4.0.2
1102+
uses: getdevopspro/github-actions/command@v4.0.3
11031103
with:
11041104
command: ${{ matrix.pre-steps.command }}
11051105

@@ -1119,7 +1119,7 @@ jobs:
11191119
with:
11201120
name: ${{ inputs.source-artifact-name }}
11211121

1122-
- uses: getdevopspro/github-actions/buildx-bake/build@v4.0.2
1122+
- uses: getdevopspro/github-actions/buildx-bake/build@v4.0.3
11231123
with:
11241124
bake-file: ${{ inputs.bake-file }}
11251125
bake-target: ${{ inputs.bake-target }}
@@ -1142,7 +1142,7 @@ jobs:
11421142
with:
11431143
name: ${{ inputs.source-artifact-name }}
11441144

1145-
- uses: getdevopspro/github-actions/buildx-bake/merge@v4.0.2
1145+
- uses: getdevopspro/github-actions/buildx-bake/merge@v4.0.3
11461146
with:
11471147
registry-username: ${{ inputs.registry-username }}
11481148
registry-password: ${{ secrets.registry-password || secrets.GITHUB_TOKEN }}
@@ -1183,7 +1183,7 @@ jobs:
11831183

11841184
- name: ${{ matrix.post-steps.name }}
11851185
id: command
1186-
uses: getdevopspro/github-actions/command@v4.0.2
1186+
uses: getdevopspro/github-actions/command@v4.0.3
11871187
with:
11881188
command: ${{ matrix.post-steps.command }}
11891189
artifact-name: ${{ matrix.post-steps.artifact-name }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,14 @@ jobs:
237237

238238
- name: Next release version
239239
id: release_version
240-
uses: getdevopspro/github-actions/release-version@v4.0.2
240+
uses: getdevopspro/github-actions/release-version@v4.0.3
241241
with:
242242
version-previous: ${{ inputs.version-previous }}
243243
version-next: ${{ inputs.version-next }}
244244
version-output-format: ${{ inputs.version-output-format }}
245245

246246
- name: Set version in file
247-
uses: getdevopspro/github-actions/version-file@v4.0.2
247+
uses: getdevopspro/github-actions/version-file@v4.0.3
248248
with:
249249
version: ${{ steps.release_version.outputs.version }}
250250
version-makefile: ${{ inputs.version-makefile }}
@@ -285,7 +285,7 @@ jobs:
285285
run: ${{ inputs.build-command }}
286286

287287
- name: Build container image
288-
uses: getdevopspro/github-actions/buildx-bake@v4.0.2
288+
uses: getdevopspro/github-actions/buildx-bake@v4.0.3
289289
if: inputs.build-container-image
290290
id: build_container_image
291291
with:
@@ -326,7 +326,7 @@ jobs:
326326
run: ${{ inputs.release-command }}
327327

328328
- name: Push git version
329-
uses: getdevopspro/github-actions/release-git-push@v4.0.2
329+
uses: getdevopspro/github-actions/release-git-push@v4.0.3
330330
if: inputs.push-git
331331
id: git_push
332332
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION ?= 4.0.2
1+
VERSION ?= 4.0.3
22
WORKFLOW_FILES := .github/workflows/pull-request.yml .github/workflows/promote.yml .github/workflows/release.yml
33
ifneq (,$(findstring xterm,${TERM}))
44
RED := $(shell tput -Txterm setaf 1)

0 commit comments

Comments
 (0)