Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/reusable-build-and-review-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Check for code changes to the action source code
id: source-code
uses: im-open/.github/.github/actions/did-custom-action-code-change@v1
uses: im-open/.github/.github/actions/did-custom-action-code-change@v2
with:
files-with-code: ${{ inputs.files-with-code}} # Default is 'action.yml,package.json,package-lock.json'
folders-with-code: ${{ inputs.dirs-with-code }} # Default is 'src,dist'
Expand All @@ -99,7 +99,7 @@ jobs:
- name: Get the next version for the repo
if: steps.source-code.outputs.HAS_CHANGES == 'true'
id: version
uses: im-open/git-version-lite@v2
uses: im-open/git-version-lite@v4

- name: The next action version will be - ${{ steps.version.outputs.NEXT_VERSION || 'N/A'}}
if: steps.source-code.outputs.HAS_CHANGES == 'true'
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
- name: ${{ env.README }} - Update version to @${{ env.NEXT_VERSION }}
if: env.HAS_CODE_CHANGES == 'true'
id: update-readme
uses: im-open/.github/.github/actions/update-action-version-in-file@v1
uses: im-open/.github/.github/actions/update-action-version-in-file@v2
with:
file-to-update: ./${{ env.README }} # Default: 'README.md'
action-name: ${{ inputs.action-name }} # Default: 'github.repository'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-increment-version-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: If PR is merged to ${{ inputs.default-branch }} - Check for code changes to the action source code
if: env.MERGE_TO_MAIN == 'true'
id: source-code
uses: im-open/.github/.github/actions/did-custom-action-code-change@v1
uses: im-open/.github/.github/actions/did-custom-action-code-change@v2
with:
files-with-code: ${{ inputs.files-with-code}} # Default is 'action.yml,package.json,package-lock.json'
folders-with-code: ${{ inputs.dirs-with-code }} # Default is 'src,dist'
Expand All @@ -93,7 +93,7 @@ jobs:
- name: If PR is merged to ${{ inputs.default-branch }} & PR has source code changes - Get the next version for the repo
if: env.MERGE_TO_MAIN == 'true' && steps.source-code.outputs.HAS_CHANGES == 'true'
id: version
uses: im-open/git-version-lite@v2
uses: im-open/git-version-lite@v4

- name: If PR is merged to ${{ inputs.default-branch }} & PR has source code changes - Print action version (${{ steps.version.outputs.NEXT_VERSION || 'N/A'}})
if: env.MERGE_TO_MAIN == 'true' && steps.source-code.outputs.HAS_CHANGES == 'true'
Expand Down