Skip to content

Commit da29b7d

Browse files
committed
refactor: update internal action uses path and rename type input to build-type
1 parent 992262e commit da29b7d

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/actions/version-bumping/maven/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ runs:
5858

5959
- name: Bump up project version
6060
id: bump
61-
uses: .
61+
uses: ./.github/actions/core
6262
with:
63-
type: "maven"
63+
build-type: "maven"
6464
pom-file: ${{ inputs.pom-file }}
6565
git-username: ${{ inputs.git-username }}
6666
git-useremail: ${{ inputs.git-useremail }}

.github/actions/version-bumping/npm/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ runs:
6161

6262
- name: Bump up npm pr version
6363
id: bump
64-
uses: .
64+
uses: ./.github/actions/core
6565
with:
66-
type: "npm"
66+
build-type: "npm"
6767
package-json-file: ${{ inputs.package-json-file }}
6868
git-username: ${{ inputs.git-username }}
6969
git-useremail: ${{ inputs.git-useremail }}

.github/actions/version-bumping/python/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ runs:
6060
6161
- name: Bump up project version
6262
id: bump
63-
uses: ./
63+
uses: ./.github/actions/core
6464
with:
65-
type: "python"
65+
build-type: "python"
6666
pyproject-file: ${{ inputs.pyproject-file }}
6767
git-username: ${{ inputs.git-username }}
6868
git-useremail: ${{ inputs.git-useremail }}

.github/actions/version-bumping/version-file/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ runs:
5151

5252
- name: Bump up version file
5353
id: bump
54-
uses: .
54+
uses: ./.github/actions/core
5555
with:
56-
type: "version-file"
56+
build-type: "version-file"
5757
version-file: ${{ inputs.version-file }}
5858
git-username: ${{ inputs.git-username }}
5959
git-useremail: ${{ inputs.git-useremail }}

0 commit comments

Comments
 (0)